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