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?