DockItem.FirstPane Property

DevZest WPF Docking

DockItemFirstPane Property
Gets the first 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 FirstPane { get; }
Public ReadOnly Property FirstPane As DockPane
	Get

Property Value

Type: DockPane
The first 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