How to disable Cell Highlighting in a datagridview, Highlighting should not happen even if I click on the cell.
Any thoughts please
|
How to disable Cell Highlighting in a datagridview, Highlighting should not happen even if I click on the cell. Any thoughts please |
|||
|
|
|
The only way I've found to "disable" highlighting is to set the Something like this:
|
|||
|
The ForeColor/BackColor kludge wasn't working for me, because I had cells of different colors. So for anyone in the same spot, I found a solution more akin to actually disabling the ability. Set the
|
|||||||||||
|
|
Did a quick websearch to find out how to make a datagridview selection non-selectable & got this (web page) hit. Calling ClearSelection on SelectionChanged can and does cause a double firing of the SelectionChanged event, at minimum. The first event is when the cell/row is selected and, of course, the SelectionChanged event is fired. The second firing is when ClearSelection is called as it causes (and logically so!) the selection of the datagridview to (again) changed (to no selection), thus firing SelectionChanged. If you have more code than simply ClearSelection going on, as such I do, you'll want to suppress this event until after your code is done. Here's an example:
|
||||
|
|
|
(EDIT) actually, this needs to be done at time for data population. it doesn't appear to work in the on selection changed method. So after populating the data into the table, you need to iterate through the cells and change their selected background to match their normal background. Something like this (syntax may be a little off, I'm converting it from my vb code):
|
||||
|
|
|
Messing around and this also works, as i only want to change the cell background colour in the 2nd column when a cell is clicked:
|
|||
|
|