BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
grid.AlphaBlendSelectionColor = Color.FromArgb(0, grid.AlphaBlendSelectionColor);
This code makes the alpha value of the selection color to be zero, and should make the ''selected'' line invisible.
this.gridDataBoundGrid1.AlphaBlendSelectionColor = System.Drawing.Color.FromArgb(0, 178, 180, 191);
private void gridDataBoundGrid1_PrepareViewStyleInfo(object sender, GridPrepareViewStyleInfoEventArgs e) { if(e.ColIndex > 0 && e.RowIndex > 0 && this.gridDataBoundGrid1.Selections.GetSelectedRows(true, true).AnyRangeContains(GridRangeInfo.Cell(e.RowIndex, e.ColIndex))) { e.Style.BackColor = Color.DodgerBlue; } }