To display the first set of controls on C1DockingTabPage for the rest of the C1DockingTabPages without duplicating them, perform the following steps:
To write code in Visual Basic
Visual Basic |
Copy Code
|
---|---|
Me.dockingTab.SelectedTab.Controls.Add (myPanel) |
To write code in C#
C# |
Copy Code
|
---|---|
this.dockingTab.SelectedTab.Controls.Add (myPanel); |