Select only one checkbox from multiple checkbox columns in questionnaire style DataGridView
问题 I've create an application which displays a DataGridView with a series of questions. The dgv structure consists of one string column for the question text and three bool/checkbox columns for the answers (yes, no, N/A). Each single question is displayed on its own row. I would like my program to only allow the user to select only Yes, only No or only N/A on each row. I think I would need to uncheck the other checkbox options when one option is checked but I'm not too sure on how to do this. I