How to change the color of the full row selection

In my GridGroupingControl I set full row select: grid.TableDescriptor.TableOptions.ListBoxSelectionMode = SelectionMode.One; The selected full row is painted in black. Now I want to change the color to a blue. How can I do this? Thanks.

2 Replies

AD Administrator Syncfusion Team June 7, 2004 01:00 PM UTC

You need to make sure AlphaBlend and Row are turned on in the AllowSelection flags. gridGroupingControl1.TableOptions.AllowSelection |= GridSelectionFlags.AlphaBlend | GridSelectionFlags.Row;


GS Günter Schwaiger June 7, 2004 02:00 PM UTC

Very cool, now it looks much better. Is it possible to set the selection color to a customer defined color?

Loader.
Up arrow icon