vb.net How do I stop DataGridView from displaying the state of a checkbox (True/False) during a mouseover event

30 Views Asked by At

I use DataGridView with a CheckBox column and when cursor hovers over a checkbox at runtime the checkboxes display what is similar to a tooltip that says either True or False depending on the state of the checkbox and I don't want that. How do I turn it off?

1

There are 1 best solutions below

0
Bender110001 On

You can set the DataGridView.ShowCellToolTips property to false

Take a look at the Microsoft Guide