DockManager Events
The component that allows you to create docked, floating and/or auto-hidden dock panels inside a form or user control. See Docking Library.Name | Description |
---|---|
ActiveChildChanged | Fires after the panel’s active child has been changed. |
ActivePanelChanged | Fires after the active dock panel has been changed. |
BeforeLoadLayout | Occurs before a layout is restored from storage (a stream, xml file or the system registry). |
ClosedPanel | Occurs after a panel has been closed. |
ClosingPanel | Occurs when a panel is closing. |
Collapsed | Occurs when any auto-hide DockPanel within the current DockManager is completely hidden. |
Collapsing | Occurs when any auto-hide DockPanel within the current DockManager is about to hide. |
CreateAutoHideContainer | Fires after an auto hide container has been created. |
CreateResizeZone | Allows you to prevent dock panels from being resized using the mouse at specific borders and corners. |
DestroyAutoHideContainer | Fires before an auto hide container has been destroyed. |
Disposed | Occurs when the component is disposed by a call to the Dispose() method. Inherited from Component. |
Docking | Fires repeatedly while a dock panel is being dragged. |
EndDocking | Fires immediately after a docking operation on a dock panel has finished. |
EndSizing | Fires after a resize operation on a dock panel has finished. |
Expanded | Occurs when any auto-hide DockPanel within the current DockManager is completely shown. |
Expanding | Occurs when any auto-hide DockPanel within the current DockManager is about to be displayed. |
LayoutUpgrade | Occurs after a layout whose version doesn’t match the current layout’s version has been loaded from storage (a stream, xml file or system registry). |
Load | Fires after the docking layout has been loaded. |
PopupMenuShowing | Occurs when a context menu is about to be displayed. |
RegisterDockPanel | Occurs when a new panel is registered within the dock manager. |
RestoreLayoutError | Occurs when a saved layout is invalid and cannot be restored. Allows you to fix restore layout exceptions. |
ShowingDockGuides | Occurs when an end-user drags a DockPanel into another panel and allows you to hide specific dock hints and guides. If the DocumentManager component is also present on the form, handle its BaseView.ShowingDockGuides event to control which dock hints should be visible when a user drags a panel over this component. |
Sizing | Fires when the dock panel is being resized. |
StartDocking | Fires when a docking operation starts. |
StartSizing | Enables specifying whether end-users can resize the dock panels. |
TabbedChanged | Occurs when a panel’s DockPanel.Tabbed property is changed. |
TabsPositionChanged | Fires after a dock panel’s DockPanel.TabsPosition property has been changed. |
TabsScrollChanged | Occurs when a panel’s DockPanel.TabsScroll property is changed. |
UnregisterDockPanel | Occurs when a panel is removed from the dock manager. |
VisibilityChanged | Fires after the visible state of any dock panel owned by the dock manager has been changed. |
See Also