DockManager.TargetPosition Attached Property

DevZest WPF Docking

DockManagerTargetPosition Attached Property
Gets or sets the target DropPosition 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 GetTargetPosition, SetTargetPosition
See GetTargetPosition, SetTargetPosition

Property Value

Type: DropPosition
The target DropPosition. The default value is None.
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