DockItem.SecondPane Property

DevZest WPF Docking

DockItemSecondPane Property
Gets the second DockPane that this DockItem associated with. This is a dependency property.

Namespace: DevZest.Windows.Docking
Assembly: DevZest.WpfDocking (in DevZest.WpfDocking.dll) Version: 2.5.0.0 (2.5.5912.0)
Syntax
public DockPane SecondPane { get; }
Public ReadOnly Property SecondPane As DockPane
	Get

Property Value

Type: DockPane
The second DockPane that this DockItem associated with.
Remarks
A DockItem object can contained by two DockPane objects, one for floating mode and one for non floating mode. The FirstPane property always returns the DockPane that the DockItem last shown. Calling ToggleFloating swaps FirstPane and SecondPane if they both exist.
See Also