Articles in this section
Category / Section

How to disable particular docking style of docking window in WinForms Docking Manager?

4 mins read

Disable the docking style

This can be done by checking DockingStyle enumeration in DockAllow event. Suppose to avoid tabbed style the DockingStyle enumeration has to be checked for Tabbed and that particular event should be avoided. Please refer the below code snippet which illustrates this.

C#

void dockingManager1_DockAllow(object sender, Syncfusion.Windows.Forms.Tools.DockAllowEventArgs arg)
{
   if (arg.DockStyle == DockingStyle.Tabbed)
   {
       arg.Cancel = true;
   }
}

 

VB

Private Sub DockingManager1_DockAllow(ByVal sender As Object, ByVal arg As Syncfusion.Windows.Forms.Tools.DockAllowEventArgs)
'throw new Exception("The method or operation is not implemented.");
    If arg.DockStyle = DockingStyle.Tabbed Then
        arg.Cancel = True
    End If
End Sub

UG document link: https://help.syncfusion.com/windowsforms/dockingmanager/docking-events#dockallow-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