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
RemarksTargetItem and TargetPosition attached property are used together to determine the drop target:
| TargetItem | TargetPosition | Description |
|---|---|---|
| null | Left, Right, Top or Bottom | Show as tool window in the DockControl. |
| null | Fill | Show as document window in the DockControl. |
| not null | Left, Right, Top or Bottom | Show as side pane of specified TargetItem's DockPane. |
| not null | Fill | Show as last tab of specified TargetItem's DockPane. |
| not null | Tab | Show as tab inserted before specified TargetItem. |
Any other combinitions are invalid.
See Also