BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
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;
}
|