Skip to main content
A newer version of this page is available. .

DockManager.AddPanel(DockingStyle, DockPanel) Method

Docks the specified panel to the DockManager container using the specified style.

Namespace: DevExpress.XtraBars.Docking

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

public void AddPanel(
    DockingStyle dock,
    DockPanel panel
)

Parameters

Name Type Description
dock DockingStyle

The DockingStyle value that specifies the docking style.

panel DockPanel

The DockPanel to be docked.

Remarks

Use the AddPanel method to dock the DockPanel to the DockManager container using the specified style. Note that with this method, you cannot dock a DockPanel that is hidden or auto-hidden. It is also not possible to use the DockingStyle.Fill value as a dock parameter. Note that unlike other AddPanel method overloads, the current method overload does not create a new DockPanel object.

See Also