BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
//in formload gridListControl1.Grid.PrepareViewStyleInfo += new GridPrepareViewStyleInfoEventHandler(grid_PrepareViewStyleInfo); gridListControl1.Grid.AlphaBlendSelectionColor = Color.FromArgb(1, 0, 0, 0); //the handler private void grid_PrepareViewStyleInfo(object sender, GridPrepareViewStyleInfoEventArgs e) { if(this.ListBox1.Grid.Selections.GetSelectedRows(true, false).AnyRangeIntersects(GridRangeInfo.Cell(e.RowIndex,e.ColIndex))) { e.Style.BackColor = Color.LightGoldenrodYellow; } }