Articles in this section
Category / Section

What is the purpose of DockMenuClick event in WinForms Docking Manager?

1 min read

Docking event

DockMenuClick will fire when the click on the menuitems which are situated in the parent menu "Dock to".It is different from  DockContextMenu because  DockContextMenu occurs when we Right click on the title bar of the docked control and before displaying menu.

Note:

This event won’t get fired when we select the menuitems which are not in the "Dock to" menu

 

C#

//Handling DockMenuClick event
private void dockingManager1_DockMenuClick(object sender, Syncfusion.Windows.Forms.Tools.DockMenuClickEventArgs arg)
{
  this.label1.Text = arg.Control.Name + " is docked to " + arg.DockingStyle.ToString();
}

 

VB

'Handling DockMenuClick event
Private Sub dockingManager1_DockMenuClick(ByVal sender As Object, ByVal arg As Syncfusion.Windows.Forms.Tools.DockMenuClickEventArgs) Handles dockingManager1.DockMenuClick
  Me.label1.Text = arg.Control.Name & " is docked to " & arg.DockingStyle.ToString()
End Sub

 

UG document link: https://help.syncfusion.com/windowsforms/dockingmanager/docking-events#dockmenuclick-event

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied