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

DockManager.ClosedPanel Event

Occurs after a panel has been closed.

Namespace: DevExpress.XtraBars.Docking

Assembly: DevExpress.XtraBars.v19.2.dll

Declaration

[DXCategory("Docking")]
public event DockPanelEventHandler ClosedPanel

Event Data

The ClosedPanel event's data class is DockPanelEventArgs. The following properties provide information specific to this event:

Property Description
Panel Gets the processed dock panel.

Remarks

The ClosedPanel event occurs after a panel has been closed. It serves as a notification and can’t be used to prevent a panel from being closed. To prevent a panel from being closed, handle the DockManager.ClosingPanel event. See this member’s description for more information.

See Also