based on this example
http://msdn.microsoft.com/en-us/library/system.windows.data.binding.validatesonexceptions.aspx
It seems that ValidatesOnExceptions is responsable to catch the custom exception and add it to Validation.Errors collection.
The problem is I have the same behavior even with ValidatesOnExceptions set to false
Could someone explain what I am missing?
Thanks
ValidatesOnExceptionsis for custom exception display. But if you haveTextBoxbound to anintproperty then before the binding happen a conversion occurs which could cause “red border”.To try it out
Type a number to each textbox:
true
I hope it helped.