AD
Administrator
Syncfusion Team
November 17, 2004 12:02 PM UTC
To use alphablended selection coloring, you need to make sure the AlphaBlen flag is set in teh AllowSelections property.
this.gridGroupingControl1.TableOptions.AllowSelection = GridSelectionFlags.Any;
To not lose the selections on a right click, try setting this property.
this.gridGroupingControl1.TableControl.Model.Options.SelectCellsMouseButtonsMask = MouseButtons.Left;