Maximize productivity with
30% off* for a limited time
using BOOSTDEV30.
Includes 3- and 5-packs.
*Some exclusions may apply.New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.
this.sfDataGrid1.Style.GroupDropAreaStyle.TextColor = SystemColors.WindowText;
this.sfDataGrid1.Style.GroupDropAreaItemStyle.TextColor = SystemColors.WindowText;
this.sfDataGrid1.Style.HeaderStyle.TextColor = SystemColors.WindowText;
//To set the textcolor for all other rows.
this.sfDataGrid1.QueryRowStyle += SfDataGrid1_QueryRowStyle;
private void SfDataGrid1_QueryRowStyle(object sender, Syncfusion.WinForms.DataGrid.Events.QueryRowStyleEventArgs e)
{
//This will set the textcolor for all other rows.
e.Style.TextColor = SystemColors.WindowText;
}
|