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

DockManager.VisibilityChanged Event

Fires after the visible state of any dock panel owned by the dock manager has been changed.

Namespace: DevExpress.XtraBars.Docking

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

[DXCategory("Docking")]
public event VisibilityChangedEventHandler VisibilityChanged

Event Data

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

Property Description
OldVisibility Gets the previous visible state of the panel.
Panel Gets the processed dock panel. Inherited from DockPanelEventArgs.
Visibility Gets the current visible state of the panel.

Remarks

A panel’s visible state is specified by its DockPanel.Visibility property. Changing this property’s value raises the VisibilityChanged event. This event is fired either when end-users close or show dock panels or when they enable or disable their auto hide functionality.

This event handler receives a parameter of the VisibilityChangedEventArgs type. It allows the previous and current visible states of the panel to be determined. The panel whose visible state has been changed is identified by the event parameter’s DockPanelEventArgs.Panel property.

See Also