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