I have a dataGridView control with a DataGridViewComboBoxColumn column, the question is Which event of the dataGridView I must use to detect when the user change the selected value of a particular DataGridViewComboBoxColumn?
I have a dataGridView control with a DataGridViewComboBoxColumn column, the question is Which event
Share
You should look at CellValueChanged. This event is raised when you leave the cell and it was modified.
The CellValueChanged occurs on the DataGridView, so you can look if the event was raised on the column index of your ComboBoxColumn.