I have a DataGridView with the first column as a DataGridViewCheckBoxColumn. I have SelectionMode set to FullRowSelect. I have MultiSelect set to True.
I want to be able to select multiple rows and then check the first column. This will check or uncheck all the checkboxes that are currently selected; however, when I do this, the selection is removed and only the row whose checkbox I'm clicking on will be selected.
I other words, I don't want to remove the selection when clicking on the checkbox cell.