这是重现此问题的代码:
XAML:
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<TextBox Text="{Binding Num, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}"></TextBox>
</Grid>
C#:
using System.ComponentModel;
using System.Windows;
namespace WpfApplication1
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
this.DataContext = new Entity();
}
}
public class Entity : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
private double num;
protected void OnPropertyChanged(string propertyName)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null)
{
handler(this, new PropertyChangedEventArgs(propertyName));
}
}
public double Num
{
get { return num; }
set
{
num = value;
if (value > 100)
{
num = 100;
}
OnPropertyChanged("Num");
}
}
}
}
现在,如果我运行它,输入1,没关系。然后输入另一个1,这使它成为11,它仍然可以。 然后输入另外1个,这使得111,现在验证将起作用并将值更改为100,并且UI将显示100。 但是如果我输入更多数字,UI就不会改变,它将是1001。
我想这与将属性设置为相同的值(100)两次有关。 但我不知道如何解决它,通过修复它,我的意思是让UI始终遵循属性值。
由于
答案 0 :(得分:0)
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<!--The Too tip for the textbox-->
<Style x:Key="txterror" TargetType="{x:Type TextBox}">
<Style.Triggers>
<Trigger Property="Validation.HasError" Value="true">
<Setter Property="ToolTip"
Value="{Binding RelativeSource={x:Static RelativeSource.Self},
Path=(Validation.Errors)[0].ErrorContent}"></Setter>
<Setter Property="Background" Value="Red"></Setter>
</Trigger>
</Style.Triggers>
</Style>
</Window.Resources>
<Grid>
<TextBox x:Name="txt" Text="{Binding Mode=TwoWay, IsAsync=True, Path=Num, UpdateSourceTrigger=PropertyChanged}" Margin="63,36,71,184" >
<TextBox.Effect>
<DropShadowEffect ShadowDepth="5"/>
</TextBox.Effect>
</TextBox>
<TextBox Margin="63,96,71,124" Text="{Binding ElementName=txt,Path=Text}">
<TextBox.Effect>
<DropShadowEffect ShadowDepth="5" />
</TextBox.Effect>
</TextBox>
</Grid>
</Window>
使用上面的代码,其工作正常。 意味着当你设置Num proeprty的值时,它将proerty值设置为100,但是你的widnow的文本框值不会改变。 这是因为它使用了框架元素错误验证所以你想要放入文本框中它会输入并在文本框中显示该值。但是当它高于100时,属性值总是100。
您的解决方案是在绑定语句中使用 IsAsync = True
答案 1 :(得分:0)
实际上,只要文本框中的输入可以自动转换为double,它就应该可以正常工作。你检查输出窗口是否有bindingexceptions?如果使用像1001这样的值进行调试会在setter中发生什么?
答案 2 :(得分:0)
在将num
截断为100之前引入属性更改通知,并在截断...
num = value;
OnPropertyChanged("Num");
if (value > 100)
{
num = 100;
OnPropertyChanged("Num");
}
如果这有帮助,请告诉我。