1

I have datagridview with checkboxcolumn.

How can I detect when checkbox state in cell has changed? Which event is fired when user click checkbox in datagridivew?

TheBoyan
  • 6,802
  • 3
  • 45
  • 61
Robert
  • 2,571
  • 10
  • 63
  • 95
  • 1
    Take a look at: http://stackoverflow.com/questions/932040/triggering-a-checkbox-value-changed-event-in-datagridview-c-net Your question appears to be a duplicate. – emd Dec 23 '11 at 14:24

1 Answers1

0

I believe you're looking for the "CheckedChanged" event.

Also, here's a link to an article that might help: Adding a CheckBox to your DataGrid

Aaron
  • 55,518
  • 11
  • 116
  • 132