文本框1:
<TextBox x:Name="TextBox1" Text="{Binding IdNumber, Mode=TwoWay, ValidatesOnExceptions=true, NotifyOnValidationError=true}" />
文本框2:
<TextBox x:Name="TextBox2" Text="{Binding Text,ElementName=TextBox1, Mode=TwoWay}" />
目前:使用上面的代码文本绑定工作正常,但错误验证不起作用。期望:如果假设,TextBox1 中发生的任何验证错误都应该反映在 TextBox2 中。