I have a BindingList connected as a DataGridView data source; one of the TSource properties is tied to a DataGridViewCheckBoxColumn, but the data source is updated not when a click on a flag appears, but when the focus on the flag itself is lost.
I know something like this happens with standard WindowsForms binding, when the DataSourceUpdateMode is "OnValidation" instead of "OnPropertyChanged", but how can I get the same results with a DataGridViewCheckBoxColumn?
The column is defined as follows:
DataGridViewCheckBoxColumn column = new DataGridViewCheckBoxColumn(); column.DataPropertyName = "MyProperty"; column.HeaderText = "Title"; dataGridView.Columns.Add(column);
source share