テキストボックス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 に反映されるはずです。