Docking Panels Programmatically (2025-03-17)

Local Backup

Docking to a Form

DockManager.AddPanel Creates and docks a new panel to the form.
Usage: newPanel = dockManager1.AddPanel(dockStyle);
DockPanel.DockTo method overloads which takes a dock parameter of the DockingStyle type. Allow existing panels to be docked to the form.
Usage: panel.DockTo(dockStyle); panel.DockTo(dockStyle, index);

Example 1

Example 2

Example 3

Docking to Another Panel

DockPanel.DockTo overloads which take the panel parameter of type DockPanel. These methods can be used to form new split containers and to add panels to any existing split containers and tab containers.
Usage: currentPanel.DockTo(targetPanel); currentPanel.DockTo(targetPanel, index);
The targetPanel parameter specifies the target panel. If it refers to a regular panel (neither a split container, nor a tab container), a new split container will be created and this will contain the targetPanel and currentPanel. If targetPanel refers to a split container or a tab container, currentPanel is appended as a new child to this container.
The DockTo overload which takes the targetPanel and index parameters can be used to add the current panel at a specific position within the target container. See below for information on panels’ indexes.
DockPanel.DockAsTab overloads. These allow panels to be organized into tab containers.
Usage: currentPanel.DockAsTab(targetPanel); currentPanel.DockAsTab(targetPanel, index);
If targetPanel doesn’t represent a tab container, a new tab container will be created and this will contain targetPanel and currentPanel. If targetPanel is a tab container, currentPanel will be appended to this container.
The DockAsTab overload which takes the index parameter can be used to place the current panel within the target tab container at a specific position. See below for information on panels’ indexes.
DockPanel.AddPanel Creates a new panel and docks it to the current panel.
Usage: newPanel = panel.AddPanel();
If panel represents a regular panel (neither a split container, nor a tab container), a new split container will be created and this will contain panel and newPanel.
If panel represents a container, newPanel will be appended as a child to this container.

Example 4

Example 5

Example 6

Floating a Panel

DockPanel.MakeFloat Makes an existing panel float.
Usage: panel.MakeFloat(); panel.MakeFloat(pointScreen)
The MakeFloat overload which takes the pointScreen parameter can be used to make a panel float and move it to the specified position (which is specified in screen coordinates).
The DockManager.AddPanel overload with the dockStyle parameter set to DockingStyle.Float.
The DockManager.AddPanel overload with the floatLocation parameter of type Point.
Create a new panel and float it.
Usage: dockManager1.AddPanel(DockingStyle.Float); dockManager1.AddPanel(point);

Example 7

See Also