DevZest WPF Docking
DockControlDockItems Property |
Gets a collection of DockItem objects currently associated with this DockControl.
Namespace: DevZest.Windows.Docking
Assembly: DevZest.WpfDocking (in DevZest.WpfDocking.dll) Version: 2.5.0.0 (2.5.5912.0)
Syntax
public DockItemCollection DockItems { get; }
Public ReadOnly Property DockItems As DockItemCollection Get
Property Value
Type: DockItemCollectionA collection of DockItem objects, in order of first association with this DockControl.
Remarks
A DockItem is associated with DockControl when adding this DockItem in the colletion. DockItem.DockControl also reflects this association.
Calling DockItem.Close removes the DockItem from the collection.
Calling Show Overload implicitly adds DockItem in the collection if it's not yet associated.
See Also