Version

PaneDisplayed Event

Occurs when a DockableControlPane is brought into view.
Syntax
'Declaration
 
Public Event PaneDisplayed As PaneDisplayedEventHandler
public event PaneDisplayedEventHandler PaneDisplayed
Event Data

The event handler receives an argument of type PaneDisplayedEventArgs containing data related to this event. The following PaneDisplayedEventArgs properties provide information specific to this event.

PropertyDescription
Pane (Inherited from Infragistics.Win.UltraWinDock.ControlPaneEventArgs)DockableControlPane instance associated with the event. This property is read-only.
Remarks

A control pane is considered to be taken out of view when one of the following conditions are met:

  • The pane’s Closed property is set to false, its DockableControlPane.Pinned is false, and the flyout is shown or about to be shown (DockableControlPane.IsFlyoutPaneDisplayed).
  • The pane’s Closed property is set to false and it is displayed as an mdi child (DockableControlPane.IsMdiChild). Note: This does not mean that the mdi child form is currently in view. It is possible that another mdi child is obscuring the mdi child containing the pane or that an UltraTabbedMdiManager is being used and that the contents of another mdi child are displayed in front of this pane’s form.
  • The pane is displayed within a DockAreaPane, the pane and all of its ancestors are visible (i.e. the Closed property is set to false), and the pane and its ancestors are either in Horizontal/VerticalGroups or they are the selected tab of their respective parent panes.

Note: These events are not tied to the actual visibility of the dockable windows but instead are based on what should be in view assuming the HostControl is in view.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also