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

DockManager.Collapsed Event

Occurs when any auto-hide DockPanel within the current DockManager is completely hidden.

Namespace: DevExpress.XtraBars.Docking

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

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

#Event Data

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

Property Description
Panel Gets the processed dock panel.

#Remarks

Use the BaseDockOptions.ShowAutoHideButton property to specify whether an end-user can enable/disable auto-hiding a panel at runtime. When an auto-hide DockPanel is about to be displayed, the DockPanel.Expanding event occurs. Afterwards, when the panel is shown, the DockPanel.Expanded event is raised. The same applies for panel hiding. The DockPanel.Collapsing and DockPanel.Collapsed events are raised in this case.

The Collapsed event is the global version of the DockPanel.Collapsed event and occurs when any auto-hide DockManager panel within the DockManager is completely hidden.

See Also