The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
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.
ADAdministrator 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;
GSGünter SchwaigerJune 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?