Search code examples
c#datagridviewcheckboxcell

How to get checked cell from datagridview in C#


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?


Solution

  • 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