DockManager.TargetItem Attached Property

DevZest WPF Docking

DockManagerTargetItem Attached Property
Gets or sets the drop target DockItem for specified element.

Namespace: DevZest.Windows.Docking.Primitives
Assembly: DevZest.WpfDocking (in DevZest.WpfDocking.dll) Version: 2.5.0.0 (2.5.5912.0)
Syntax
See GetTargetItem, SetTargetItem
See GetTargetItem, SetTargetItem

Property Value

Type: DockItem
The drop target DockItem. The default value is .
Remarks

TargetItem and TargetPosition attached property are used together to determine the drop target:

TargetItemTargetPositionDescription
nullLeft, Right, Top or BottomShow as tool window in the DockControl.
nullFillShow as document window in the DockControl.
not nullLeft, Right, Top or BottomShow as side pane of specified TargetItem's DockPane.
not nullFillShow as last tab of specified TargetItem's DockPane.
not nullTabShow as tab inserted before specified TargetItem.

Any other combinitions are invalid.

See Also