- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
此示例的上下文是有四个文本框,其中包含总时间量。 1 代表小时,1 代表分钟,1 代表秒,1 代表毫秒。
第五个文本框以毫秒为单位保存总时间。这可以在下图中看到。
我已经实现了 IMultiValueConverter
,它应该转换 4 个 TextBox
组件和一个属性中的转换值。它还应该能够在属性值更改时更新 4 个框。
当用户在包含转换后输出的文本框中键入内容,然后该框失去焦点时,其他 4 个文本框将更新。但是,当属性的值以编程方式更改时,在本例中是通过单击按钮,4 个文本框中的值不会更新。
如何通过转换器更新这 4 个文本框?
在此示例中,最终目标是将总时间(以毫秒为单位)存储在属性中,并在该属性更新时通过绑定(bind)更新 5 个文本框。
这是转换器的代码。
using System;
using System.Globalization;
using System.Windows.Data;
namespace MultiBinding_Example
{
public class MultiDoubleToStringConverter : IMultiValueConverter
{
private const double HOURS_TO_MILLISECONDS = 3600000;
private const double MINUTES_TO_MILLISECONDS = 60000;
private const double SECONDS_TO_MILLISECONDS = 1000;
private const string ZERO_STRING = "0";
private object valBuffer = null;
/*
* values[0] is the variable from the view model
* values[1] is hours
* values[2] is the remaining whole minutes
* values[3] is the remaining whole seconds
* values[4] is the remaining whole milliseconds rounded to the nearest millisecond
*/
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
{
object returnVal = ZERO_STRING;
try
{
if (values != null)
{
double hoursToMilliseconds = (values[1] == null || values[1].ToString() == string.Empty) ? 0 : System.Convert.ToDouble(values[1]) * HOURS_TO_MILLISECONDS;
double minutesToMilliseconds = (values[2] == null || values[2].ToString() == string.Empty) ? 0 : System.Convert.ToDouble(values[2]) * MINUTES_TO_MILLISECONDS;
double secondsToMilliseconds = (values[3] == null || values[3].ToString() == string.Empty) ? 0 : System.Convert.ToDouble(values[3]) * SECONDS_TO_MILLISECONDS;
double totalTime = ((values[4] == null || values[4].ToString() == string.Empty) ? 0 : System.Convert.ToDouble(values[4])) + secondsToMilliseconds + minutesToMilliseconds + hoursToMilliseconds;
returnVal = totalTime.ToString();
if (values[0] == valBuffer)
{
values[0] = returnVal;
}
else
{
valBuffer = returnVal = values[0];
ConvertBack(returnVal, new Type[] { typeof(string), typeof(string), typeof(string), typeof(string), typeof(string) }, parameter, culture);
}
}
}
catch (FormatException) { }
return returnVal;
}
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
{
try
{
if (value != null && value.ToString() != string.Empty)
{
double timeInMilliseconds = System.Convert.ToDouble(value);
object[] timeValues = new object[5];
timeValues[0] = value;
timeValues[1] = Math.Floor(timeInMilliseconds / HOURS_TO_MILLISECONDS).ToString();
timeValues[2] = Math.Floor((timeInMilliseconds % HOURS_TO_MILLISECONDS) / MINUTES_TO_MILLISECONDS).ToString();
timeValues[3] = Math.Floor((timeInMilliseconds % MINUTES_TO_MILLISECONDS) / SECONDS_TO_MILLISECONDS).ToString();
timeValues[4] = Math.Round(timeInMilliseconds % SECONDS_TO_MILLISECONDS, MidpointRounding.AwayFromZero).ToString();
return timeValues;
}
}
catch (FormatException) { }
return new object[] { ZERO_STRING, ZERO_STRING, ZERO_STRING, ZERO_STRING, ZERO_STRING };
}
}
}
为了测试这个,我有一个非常简单的布局,它由一些 Label
组件、一些 TextBox
组件和一个 Button
组成.
看起来像这样。
它的 XAML 如下。
<Window x:Class="MultiBinding_Example.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:MultiBinding_Example"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Window.Resources>
<local:MultiDoubleToStringConverter x:Key="multiDoubleToStringConverter"/>
</Window.Resources>
<StackPanel>
<Label Content="Multi Value Converter" HorizontalAlignment="Center" FontSize="35" FontWeight="Bold" Margin="0, 25, 0, 0"/>
<Label Content="Formatted Total Time" FontWeight="Bold" FontSize="24" Margin="20, 10"/>
<Grid Margin="80, 10">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="auto"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="auto"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="auto"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="auto"/>
</Grid.ColumnDefinitions>
<TextBox Name="Hours" HorizontalContentAlignment="Right" VerticalContentAlignment="Center" Text="0" Grid.Column="0"/>
<Label Content="Hours" Grid.Column="1" Margin="0, 0, 15, 0"/>
<TextBox Name="Minutes" HorizontalContentAlignment="Right" VerticalContentAlignment="Center" Text="0" Grid.Column="2"/>
<Label Content="Minutes" Grid.Column="3" Margin="0, 0, 15, 0"/>
<TextBox Name="Seconds" HorizontalContentAlignment="Right" VerticalContentAlignment="Center" Text="0" Grid.Column="4"/>
<Label Content="Seconds" Grid.Column="5" Margin="0, 0, 15, 0"/>
<TextBox Name="Milliseconds" HorizontalContentAlignment="Right" VerticalContentAlignment="Center" Text="0" Grid.Column="6"/>
<Label Content="Milliseconds" Grid.Column="7"/>
</Grid>
<Label Content="Unformatted Total Time" FontWeight="Bold" FontSize="24" Margin="20, 10"/>
<Grid Margin="80, 10">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="auto"/>
</Grid.ColumnDefinitions>
<TextBox HorizontalContentAlignment="Right" VerticalContentAlignment="Center" Grid.Column="0">
<TextBox.Text>
<MultiBinding Converter="{StaticResource multiDoubleToStringConverter}" Mode="TwoWay">
<Binding Path="TotalTime"/>
<Binding ElementName="Hours" Path="Text"/>
<Binding ElementName="Minutes" Path="Text"/>
<Binding ElementName="Seconds" Path="Text"/>
<Binding ElementName="Milliseconds" Path="Text"/>
</MultiBinding>
</TextBox.Text>
</TextBox>
<Label Content="Milliseconds" Grid.Column="1"/>
</Grid>
<Button Grid.Column="1" Margin="250, 20" Height="50" Content="Random Total Milliseconds" Click="RandomTime_Click"/>
</StackPanel>
</Window>
背后的代码如下。
using System;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Windows;
namespace MultiBinding_Example
{
public partial class MainWindow : Window, INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
private Random random = new Random();
private string totalTime;
public string TotalTime {
get => totalTime;
set {
totalTime = value;
RaisePropertyChanged();
}
}
public MainWindow()
{
InitializeComponent();
DataContext = this;
UpdateTotalTime();
}
private void RaisePropertyChanged([CallerMemberName] string propertyName = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
private void RandomTime_Click(object sender, RoutedEventArgs e)
{
UpdateTotalTime();
}
private void UpdateTotalTime()
{
double percent = random.NextDouble();
double time = Math.Floor(percent * random.Next(1000, 100000000));
TotalTime = time.ToString();
}
}
}
最佳答案
这并不是转换器的真正用途。
转换器采用一组 View 模型值并将它们转换为 View 值以供显示。然后,如果 View 值发生变化,它可以将它们转换回 View 模型值。
在您的情况下, View 模型值是通过代码更新的(而不是通过更改 View ),因此转换器没有理由运行 ConvertBack
方法(该值已经是一个 View 模型值!)。这是转换器不应有副作用的几个原因之一。
执行此操作的正确方法是将 TotalTime
作为 VM 上的属性(可能是数字或 TimeSpan
而不是您拥有的字符串)然后为每个部分做单独的转换器。例如:
<TextBox Text="{Binding TotalTime, Converter={StaticResource TimeSecondsConverter}"/>
然后主文本框将只绑定(bind)到 TotalTime
。 TimeSecondsConverter
可能需要是一个多值转换器才能使 ConvertBack
正常工作。
关于c# - 当属性值更改时更新文本框 - WPF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51752608/
我正在尝试使用 tkinter 创建一个类似点击器的游戏作为练习。我对 tkinter 很陌生,所以如果问题非常基本,我深表歉意。我设置了一个按钮来添加点击次数,并且我还尝试设置自动点击功能。我的代码
我想以特定方式更新表 A 中的第 1 列:当列中的第三个字符是“_”时,我想插入前 2 个字符,如果第三个字符还有其他任何内容,我想保留它是。 例子: |col1|
我用 View 模型组装了一个简单的登录 fragment 。这是 fragment : class LoginFragment : Fragment() { companion object {
是否可以在 mySQL 中的创建表语句中编写更新语句?假设我们有两个不同的表。当我在一个表上插入某些内容时,我想更改另一表中的值。这在 mySQL 中可能吗 最佳答案 需要更多规范。 如果您有 2 个
我组合了一个简单的发布/订阅模式,以允许动态实例化和运行多个 JavaFX 类。这些类中的每一个(“订阅者”)都旨在可视化来自具有“发布者”角色的模型(在模型/ View / Controller 意
我正在使用 pygame 并在主循环的每个循环中更新到屏幕。我不明白的是,在我添加一个 for 循环查找事件之前,什么都不会更新,然后突然所有更新都发生了。这是为什么? def run(self
我是 React 的初学者;我知道 setState 是异步的,但我不明白为什么在示例笔中下方框下方的刷新不会立即完成,而仅在输入第二个字符后才更新。 Codepen:(已更新以链接到正确的笔) ht
我在 Java 程序中有两个选项卡。一个用于添加股票,另一个用于列出我创建的股票。当我在第二个选项卡中添加新项目时,我试图设法更新第一个选项卡中的项目列表。有任何想法吗? 我希望第一个选项卡显示我在第
我有一个 Activity A。加载 A 后,单击 A 中的按钮会在 A 的主页布局上添加 fragment F。现在一旦进入 F,如果我正在调用 getActivity().getSupportFr
下面提供的这段代码中的 friend 们,我想在从播放 Intent 恢复时刷新我的 TextView 。但是每当我尝试在 OnCreate 之外但在我的主类中定义我的 textview 时(在 st
我是 Postgres 的新手。我正在尝试使用 java/postgres jdbc 执行以下代码(适用于 MySQL): for (int i = 0; i < arr.size(); i++) {
目前,我有一个更新函数,可以更新一行,但如果我将其中一个框留空,而不是不更改该值,则该值将被删除。如果我只需要更新其中一个值,我想更新该值并将其他框留空。这可能吗? 目前我的代码是这样的。 最佳答案
我正在编写 JavaScript,它正在为一个项目计数到一定数量。数量可能在 100,000 左右,完成处理大约需要 10-15 秒。我希望脚本在用户调用页面时立即运行,并在脚本完成时进行重定向。是否
每当具有不同输入 ID 的另一个 selectInput 的值发生变化时,我需要更改一个具有自己输入 ID 的 selectInput 的值。 在 javascript 中,这将是 onchage,但
我正在尝试弄清楚如何在将视频上传到服务器时更新我的 UIProgressView。该视频是用户选择的视频,这是我上传到我的服务器的代码: NSMutableArray *array = [[NSM
我想在单击 h:commandButton 时更新 id="contents"的 div,但复杂的部分是 h:commandButton 位于 c:forEach Click Me
我目前正在构建一个读取数组并将其显示在 TableView 上的 UITableView。我不断地添加到数组中,我希望在 View 上有一个按钮,一旦单击它就会更新 UITableView。 如何从我
我在 StructuredProperty 中有一个 ComputedProperty,它在首次创建对象时不会更新。 当我创建对象时 address_components_ascii 没有被保存。该字
我知道 SCNPhysicsBody 在节点缩放时不会缩放,但我还没有找到解决此问题的好方法。我想缩放节点,然后在缩放后将 SCNPhysicsBody 更新为节点。 let box = SCNBox
我在自定义 UITableViewCell 中有一个 UILabel,当设备旋转时,它会调整大小。旋转后需要重新计算此标签中的文本,因为我要将其缩小到适当大小并在末尾附加一些文本。 例如数据模型有:“
我是一名优秀的程序员,十分优秀!