Deepak Bhatia

Deepak Bhatia

  • NA
  • 369
  • 15.6k

DataGridView Events

Sep 21 2009 3:03 AM
how to know DataGridViewCheckBoxColumn value has changed in the DataGridView? I found the answer to the question There is event CellContentClick. private void dataGridView_CellContentClick(object sender, DataGridViewCellEventArgs e) { //Column Index of column containing DataGridViewCheckBox int columnIndex= searchIndex; if (e.ColumnIndex == columnIndex) MessageBox.Show("Check Box Status Changed"); }

Answers (3)