未找到Silverlight 3 ValidatesOnException
我正在尝试添加验证并从编译器获取以下内容。
在'Binding'类型中找不到'ValidatesOnException'属性。 属性'ValidatesOnException'在XML名称空间'http://schemas.microsoft.com/winfx/2006/xaml/presentation'中的类型'Binding'上不存在。
我尝试在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}}" />
有任何想法吗?
该属性不称为ValidatesOnException
它被称为ValidatesOnExceptions
注意复数 。