我正在尝试添加验证并从编译器中获取以下内容。
在“绑定”类型中找不到属性“ValidatesOnException”。 XML命名空间“http://schemas.microsoft.com/winfx/2006/xaml/presentation”中的“绑定”类型中不存在属性“ValidatesOnException”。
我尝试在System.Windows中添加System.Windows.Data作为xmlns,但没有运气。
以下是我对标记的尝试。
<TextBox x:Name="Office" Style="{StaticResource PhoneNumber}">
<TextBox.Text>
<Binding Path="Office" Mode="TwoWay" NotifyOnValidationError="true" ValidatesOnException="true" Converter="{StaticResource PhoneNumberConverter}" />
</TextBox.Text>
</TextBox>
<TextBox x:Name="Office" Style="{StaticResource PhoneNumber}" Text="{Binding Office, Mode=TwoWay, NotifyOnValidationError=true, ValidatesOnException=true, Converter={StaticResource PhoneNumberConverter}}" />
有什么想法吗?
答案 0 :(得分:2)
该属性未被称为ValidatesOnException
,称为ValidatesOnExceptions
,请注意复数。