Home › Forums › WinForms controls › Xceed Grid for WinForms › Change Selection mode
Dear All,
I wanted to make the gird selection mode.
– DO NOT want to select entire row.
– Only select clicked cell
– NO need to color it
– Just show bounding rectangle or cell using dotted line
Imported from legacy forums. Posted by bdmsoft (had 1445 views)
Simply set the selection colors to the grid colors, and you will only see the highlight rectangle around the selected cell.
i.e.:
gridControl1.SelectionBackColor = gridControl1.BackColor; gridControl1.SelectionForeColor = gridControl1.ForeColor;
Imported from legacy forums. Posted by André (had 1708 views)