Welcome to WindowsClient.net | Sign in | Join

Here are some frequently asked questions about Windows Forms and their answers.

Windows Forms FAQs

How do I determine whether a CheckBox in a DataGrid is checked?

If the column is a boolean column, you can just cast the object returned by the indexer to a bool.

bool checked = (bool)dataGridTopics[ row, column ];

Contributed from George Shepherd's Windows Forms FAQ