vote up 1 vote down star

I'm trying to add the validation and get the following from the compiler.

The property 'ValidatesOnException' was not found in type 'Binding'. The property 'ValidatesOnException' does not exist on the type 'Binding' in the XML namespace 'http://schemas.microsoft.com/winfx/2006/xaml/presentation'.

I tried adding System.Windows.Data in System.Windows as a xmlns but no luck.

The following are my attempts at the markup.

<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}}" />

Any ideas?

flag

1 Answer

vote up 1 vote down check

The property is not called ValidatesOnException it is called ValidatesOnExceptions note the plural.

link|flag
Victim of the old "stared at it tool long". It's funny, I even thought spelling might be an issues and copied it from one of Jesse Liberty's examples. -- Thanks!! – PretzelSteelersFan Nov 3 at 19:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.