Home - Forums-.NET - FlyGrid.Net (Windows Forms) - Right mouse button selection

FlyGrid.Net (Windows Forms)

.NET Datagrid - Fast, highly customizable, industry standards .NET data grid control for WinForms

This forum related to following products: FlyGrid.Net

Right mouse button selection
Link Posted: 16-Jun-2006 02:14
At the moment, when I click with the right mouse button on a grid, it selects the underlying row. However, I start my drag and drop operation in the MouseDown-event and when I have multiselect on (so I want to drag multiple rows to somewhere) and I right-click, it deselects my selection and selects just one row. So can right mouse button selection be turned off?
Link Posted: 16-Jun-2006 13:19
turn off flyGrid.Options.RightSelection option:
[c#]
flyGrid.Options &= ~GridOptions.RightSelection;
Link Posted: 19-Jun-2006 03:52
Thanks.
Although this should work I still keep getting a mouse click with my right mouse button here. But I'll investigate further..