How to hide a menu item in WinForms DockingManager?
Hide the context menu
In order to hide a menu item in DockContextMenu in WinForms DockingManager, 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
Conclusion
I hope you enjoyed learning about how to hide a menu item in WinForms DockingManager.
You can refer to our WinForms Docking Manager feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our WinForms Docking Manager example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!