The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
I want to select a range of cells using left mouse button dragging over the cells and then pressing down the right mouse button to show a context menu according to the selected range type. To my surprise, the selection disappeared once you press the right mouse button.
How can you keep the selection range there while showing the contextmenu?
ADAdministrator Syncfusion Team February 2, 2004 01:37 PM UTC
There is a property that controls which mouse button(s) control selecting cells. Try setting
this.gridControl1.Model.Options.SelectCellsMouseButtonsMask = MouseButtons.Left;
to see if this does what you want.