I have a form containing some controls xamEditors. This blank form is loaded and the user should fill it. However, the user can confirm even without filling anything. How do I use the validation of xamEditor if the user confirms me a blank form considering the fact that yours controls do not trigger the validation if you do not take the focus?
Thanks for reply
I'm not sure what you mean by our controls do not trigger validation. Are you saying that you have some other standard wpf controls that behave differently than our with regards to validation of bound properties? If so please provide an example and we can look into why that is. If you want to see if the Value of the editors are considered valid, you can check their IsValueValid property.
I try to explain better. I have a form with three XamTextEditor wich have <ValueConstraint Nullable="False">. My form looks like this:
In this case (the form is empty) if I press the button I don't receive errors and IsValueValid property is set to true. How do I cause validation?