バージョン

Pane プロパティ (ControlPaneEventArgs)

イベントに関連付けられたDockableControlPaneインスタンスを返します。このプロパティは読み取り専用です。
シンタックス
'宣言
 
Public ReadOnly Property Pane As DockableControlPane
public DockableControlPane Pane {get;}
使用例
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) );

}
参照