When I click the ultraGrid(in WinForm),it shows a popupmenu,How can I disable the Popumenu?
Thanks in advance!
You could assign a new, empty ContextMenu object to the grid to prevent any of the editors or grid from showing anything, i.e.:
this.ultraGrid1.ContextMenu = new ContextMenu();
-Matt
Thank Matt for your help,
It has been solved.