Category / Section
How to merge two tab groups in WinForms Docking Manager?
Docking style
The DockControl method of DockingManager is used to specify the Tabbed state between the two controls. Please refer the below code snippet which illustrates this:
C#
// Tab the gradientLabel1 and treeviewAdv1. this.dockingManager1.DockControl(this.gradientLabel1, this.treeViewAdv1, Syncfusion.Windows.Forms.Tools.DockingStyle.Tabbed, 175,true);
VB
' Tab the gradientLabel1 and treeviewAdv1 Me.DockingManager1.DockControl(Me.GradientLabel1, Me.TreeViewAdv1, Syncfusion.Windows.Forms.Tools.DockingStyle.Tabbed, 175, True)
Sample: http://help.syncfusion.com/support/samples/kb/Tools.Windows/TDMerge/Merge.zip