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); |
// Create a panel and dock it to the bottom. DockPanel panel1 = dockManager1.AddPanel(DockingStyle.Bottom); panel1.Text = "Panel 1"; // Create a panel and dock it to the right. DockPanel panel2 = dockManager1.AddPanel(DockingStyle.Right); panel2.Text = "Panel 2";
DockPanel panel3; // ... panel3.DockTo(DockingStyle.Left, 0);
DockPanel panel3; // ... panel3.Index = 1;
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. |
DockPanel panel1, panel2, panel3; // ... panel2.DockTo(panel1);
// Get the container that owns panel1 and panel2. // The panel2.ParentPanel statement would give the same result. DockPanel container = panel1.ParentPanel; if(container == null) return; // Dock panel3 to the container. panel3.DockTo(container, 0);
DockPanel panel1, panel2; // ... panel2.DockAsTab(panel1);
DockPanel panel1, panel2; // ... panel2.DockTo(panel1);
// Get the split container that owns panel1 and panel2. // The panel2.ParentPanel statement would give the same result. DockPanel container = panel1.ParentPanel; if(container == null) return; // Transform the split container to a tab container. container.Tabbed = true;
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); |
panel1 = dockManager1.AddPanel(new Point(300, 300));