2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
Hide the context menuIn order to hide a menu item in DockContextMenu, you have to handle the DockContextMenu event. C# //To hide the "TabbedDocument" option in the context menu for the control "panel1" void dockingManager1_DockContextMenu(object sender, Syncfusion.Windows.Forms.Tools.DockContextMenuEventArgs arg) { if (arg.Owner == this.panel1) arg.ContextMenu.ParentBarItem.Items[2].Visible = false; }
VB 'To hide the "TabbedDocument" option in the context menu for the control "panel1" Private Sub dockingManager1_DockContextMenu(ByVal sender As Object, ByVal arg As Syncfusion.Windows.Forms.Tools.DockContextMenuEventArgs) If arg.Owner = Me.panel1 Then arg.ContextMenu.ParentBarItem.Items(2).Visible = False End If End Sub
UG document link: https://help.syncfusion.com/windowsforms/dockingmanager/dock-window#remove-specific-default-menu-item-from-context-menu |
2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.