HA
haneefm
Syncfusion Team
July 23, 2007 09:38 PM UTC
Hi Julie,
You can try these code:
this.gridControl1.AllowSelection = GridSelectionFlags.Row | GridSelectionFlags.AlphaBlend;
this.gridControl1.SelectionChanging += new GridSelectionChangingEventHandler(gridSelectionChanging);
void gridSelectionChanging(object sender, GridSelectionChangingEventArgs e)
{
e.Cancel = e.Reason != GridSelectionReason.MouseDown;
}
Best regards,
Haneef