Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a form on which all textboxes are bound to different properties of the same dataobject that implements INotifyPropertyChanged. The Forms Autovalidate is set to 'Disable' as I want to trigger the validation explicitly by calling form.ValidateChildren().

Expected: After calling ValidateChildren all edited values should be in my dataobject.

Problem: Only the last focused control writes it's data to the dataobject, but all other controls lose the edited values and show the old value instead.

Question: How can I make sure that all data is validated before the controls refresh themselves?

Using Autovalidate = EnablePreventFocusChange or EnableAllowFocusChange does work but as I want to validate all at once it is not an acceptable solution for me.

Searching the internet for soutions I found an example showing the same problem but unfortunately no solution.

EDIT After further investigation i tried this and it works:

form.BindingContext[dataobject].SuspendBinding();
form.ValidateChildren();
form.BindingContext[dataobject].ResumeBinding();

Is Pausing the Binding the standard way or are there any better solutions to fix this?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.