Dear Support,
further to the ticket https://supportcenter.devexpress.com/ticket/details/t900302, here is an alternative implementation, that allows a bit more flexibility!
With this code, you can do the usual 2 steps range selection:
- 1 select the start row without pressing Shift
- 2 select the end row pressing Shift and ending selecting the range
Codeprivate int _startRowHandle;
private void GridControl_OnPreviewMouseDown(object sender,
MouseButtonEventArgs e)
{
if (e.ChangedButton != MouseButton.Left)
return;
TableView view = (TableView)sender;
GridControl grid = (GridControl)view.Parent;
TableViewHitInfo hitTest;
if (Keyboard.Modifiers != ModifierKeys.Shift)
{
hitTest = view.CalcHitInfo(e.GetPosition(view));
if (hitTest.InRow)
{
_startRowHandle = hitTest.RowHandle;
return;
}
}
if (Keyboard.Modifiers != ModifierKeys.Shift)
return;
hitTest = view.CalcHitInfo(e.GetPosition(view));
if (hitTest.InRow)
grid.SelectRange(_startRowHandle, hitTest.RowHandle);
}