我有简单的代码:
<Style.Triggers>
<Trigger Property="IsValidated" Value="False">
<Setter Property="Background" Value="Green"/>
</Trigger>
</Style.Triggers>
这会导致异常
双向绑定需要 Path 或 XPath。
和 IsValidated 声明:
public static readonly DependencyProperty IsValidatedProperty =
DependencyProperty.Register("IsValidated", typeof(bool), typeof(MyTextBox), new FrameworkPropertyMetadata(true, FrameworkPropertyMetadataOptions.BindsTwoWayByDefault, IsValidatedPropertyChanged));
我无法更改声明,因为这是在外部程序集中。
为什么我有这个消息,我该如何解决这个问题?