DockLayout Class

DevZest WPF Docking

DockLayout Class
Represents the window layout of DockControl.
Inheritance Hierarchy
SystemObject  DevZest.Windows.DockingDockLayout

Namespace: DevZest.Windows.Docking
Assembly: DevZest.WpfDocking (in DevZest.WpfDocking.dll) Version: 2.5.0.0 (2.5.5912.0)
Syntax
public sealed class DockLayout
Public NotInheritable Class DockLayout

The DockLayout type exposes the following members.

Constructors
  NameDescription
Public methodDockLayout
Initializes a new instance of the DockLayout class
Top
Properties
  NameDescription
Public propertyBottomDockTreeHeight
Gets or sets the height of bottom DockTree.
Public propertyDockItems
Gets a collection of DockItemReference objects.
Public propertyDockTreeZOrder
Gets or sets the z-order of DockTree objects.
Public propertyLeftDockTreeWidth
Gets or sets the width of left DockTree.
Public propertyRightDockTreeWidth
Gets or sets the width of right DockTree.
Public propertyShowActions
Gets a collection of ShowAction objects.
Public propertyTopDockTreeHeight
Gets or sets the height of top DockTree.
Top
Remarks
DockLayout is used to save and load DockControl. Calling DockControl.Save saves the window layout to a DockLayout instance; calling DockControl.Load loads the window layout from a DockLayout instance. The DockLayout instance can be persisted to XAML using XamlWriter.Save.
See Also