I have a datagridview in which one of the columns is a checkbox. I am handling the CellContentClick event to update information each time a user checks or deselects one of these checkboxes. It works great. My problem is that when I double-click the checkbox, CellContentClick is called, and then CellContentDoubleClick . I want to cancel the call to CellContentDoubleClick . Is there any way to do this?
source share