I need the DataGridView to update the cell contents OnPropertyChanged, rather to OnValidate.
The DataGridView is bound to a BindingSource, sourced by a subclass of BindingList with custom business objects.
The DataGridView is for selecting the desired object, that is then bound to common controls on the form, so the user can edit it. It is only odd, that the DataGridView does not get updated while the TextBoxes are edited. The business objects support INotifyPropertyChanged, IEditableObject, IDataErrorInfo.
Any ideas on how to achive this?