由于ValiationRule不是DependencyObject,因此无法在ValidationRule属性上使用数据绑定的最佳解决方案是什么?
以下是我 喜欢 的例子。我希望能够针对其他DependencyProperty验证TextBox中的文本。
<TextBox Name="myTextBox">
<TextBox.Text>
<Binding Path="MySource" UpdateSourceTrigger="PropertyChanged">
<base:EqualsRule Target="{Binding MyTarget}" />
</Binding>
</TextBox.Text>
</TextBox>