Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DockPanel.RemovePanel(DockPanel) Method

Destroys the specified child panel.

Namespace: DevExpress.XtraBars.Docking

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public void RemovePanel(
    DockPanel panel
)

#Parameters

Name Type Description
panel DockPanel

A DockPanel object representing the child of the current panel which must be destroyed.

#Remarks

The RemovePanel method destroys the specified child of the current panel. The child panels of the specified child will be destroyed recursively. If the panel passed as this method’s parameter is not the current panel’s child, the RemovePanel method will do nothing.

To destroy all the panels that belong to the dock manager, you can use the DockManager.Clear method.

See Also