'Declaration Public Event AfterToggleDockState As PaneEventHandler
public event PaneEventHandler AfterToggleDockState
The event handler receives an argument of type PaneEventArgs containing data related to this event. The following PaneEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Pane | DockablePaneBase instance associated with the event. This property is read-only. |
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinDock Private Sub ultraDockManager1_AfterToggleDockState(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinDock.PaneEventArgs) Handles ultraDockManager1.AfterToggleDockState ' The AfterToggleDockState is invoked after a pane's ' docked location was changed from docked to floating ' or floating to docked by double clicking on the pane ' caption or the tab item. ' If (e.Pane.DockedState = DockedState.Floating) Then Debug.WriteLine(String.Format("The pane '{0}' was toggled from docked to floating", e.Pane.Key)) Else Debug.WriteLine(String.Format("The pane '{0}' was toggled from floating to docked", e.Pane.Key)) End If End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinDock; using System.Diagnostics; private void ultraDockManager1_AfterToggleDockState(object sender, Infragistics.Win.UltraWinDock.PaneEventArgs e) { // The AfterToggleDockState is invoked after a pane's // docked location was changed from docked to floating // or floating to docked by double clicking on the pane // caption or the tab item. // if (e.Pane.DockedState == DockedState.Floating) Debug.WriteLine( string.Format("The pane '{0}' was toggled from docked to floating", e.Pane.Key) ); else Debug.WriteLine( string.Format("The pane '{0}' was toggled from floating to docked", e.Pane.Key) ); }
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