AD
Administrator
Syncfusion Team
May 26, 2004 06:08 AM UTC
If a control does not have its ContextMenu property set, it will inherit the menu from its parent. I think this is what you are seeing in this case.
So, if you set the grid''s ContextMenu to a new empty menu, it will not display anything. (or, at least that what I saw when I tried it.)
//in formload
this.gridControl1.ContextMenu = new ContextMenu();