DockControl.ActiveItem Property

DevZest WPF Docking

DockControlActiveItem Property
Gets a value indicates currently active DockItem. 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 DockItem ActiveItem { get; }
Public ReadOnly Property ActiveItem As DockItem
	Get

Property Value

Type: DockItem
The currently active DockItem.
Remarks
When FocusedItem changed to as a result of clicking focusable controls outside DockControl, ActiveItem remains unchanged. This is useful to get currently active DockItem when the keyboard focus is not within DockControl, such as when a MenuItem is clicked.
See Also