New Product Launch - BoldDesk !
Introducing help desk ticketing software.
New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.
grid.Selections.Add(GridRangeInfo.Row(someRowIndex))
Normally, this would tell the grid to draw an alphablended selection rectangle over the row, and would not affect the background image.
private void gridControl1_CellDrawn(object sender, Syncfusion.Windows.Forms.Grid.GridDrawCellEventArgs e) { if(e.RowIndex == 2 && e.ColIndex > 0) { using(Brush br = new SolidBrush(Color.FromArgb(60, Color.Orange))) { e.Graphics.FillRectangle(br, e.Bounds); } } else if(e.RowIndex == 5 && e.ColIndex > 0) { using(Brush br = new SolidBrush(Color.FromArgb(60, Color.Blue))) { e.Graphics.FillRectangle(br, e.Bounds); } } }