private void gridDataBoundGrid1_PrepareViewStyleInfo(object sender, Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs e)
{
if (this.gridDataBoundGrid1.Selections.Ranges.AnyRangeContains(GridRangeInfo.Cell(e.RowIndex, e.ColIndex)))
{
if (e.RowIndex != 0 && e.ColIndex != 0)
{
e.Style.BackColor = Color.Blue;
e.Style.TextColor = Color.Cyan;
}
}
}