My program outputs information froma DataTable I collect form sql data into a DataGridview and the last column in the DGV is a checkbox. I want to know if there's any quick way/event I could use so whenever a user clicks and drags to make a large selection (like in the image, clicking on the second cell and dragging down), all the selected cells change their status as if the user had clicked on each individual checkbox?
The goal is to have a quick bulk-edit way to check large selections since that's a lot easier than checking each individual checkbox.
If there's no event handler for drag-selecting, how would I get the bounds of a large selection (start cell, end cell)?