Back to Devexpress

DockManager.VisibilityChanged Event

windowsforms-devexpress-dot-xtrabars-dot-docking-dot-dockmanager-08fab391.md

latest2.6 KB
Original Source

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.v25.2.dll

NuGet Package : DevExpress.Win.Navigation

Declaration

csharp
[DXCategory("Docking")]
public event VisibilityChangedEventHandler VisibilityChanged
vb
<DXCategory("Docking")>
Public Event VisibilityChanged As VisibilityChangedEventHandler

Event Data

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

PropertyDescription
OldVisibilityGets the previous visible state of the panel.
PanelGets the processed dock panel. Inherited from DockPanelEventArgs.
VisibilityGets 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

Visibility

DockManager Class

DockManager Members

DevExpress.XtraBars.Docking Namespace