DockTreeClient Class

DevZest WPF Docking

DockTreeClient Class
Represents the client area to display the left, right, top, bottom and document DockTree objects.
Inheritance Hierarchy
SystemObject  System.Windows.ThreadingDispatcherObject
    System.WindowsDependencyObject
      System.Windows.MediaVisual
        System.WindowsUIElement
          System.WindowsFrameworkElement
            System.Windows.ControlsControl
              DevZest.Windows.Docking.PrimitivesDockTreeClient

Namespace: DevZest.Windows.Docking.Primitives
Assembly: DevZest.WpfDocking (in DevZest.WpfDocking.dll) Version: 2.5.0.0 (2.5.5912.0)
Syntax
public class DockTreeClient : Control
Public Class DockTreeClient
	Inherits Control

The DockTreeClient type exposes the following members.

Constructors
  NameDescription
Public methodDockTreeClient
Initializes a new instance of the DockTreeClient class
Top
Properties
  NameDescription
Public propertyDockControl
Gets or sets the DockControl with this DockTreeClient. This is a dependency property.
Public propertySplit
Gets the root node of the tree converted from DockTree objects.
Top
Fields
  NameDescription
Public fieldStatic memberDockControlProperty
Identifies the DockControl dependency property.
Public fieldStatic memberSplitProperty
Identifies the Split dependency property.
Top
Remarks

DockTreeClient converts the left, right, top, bottom and document DockTree objects into a tree of DockTreeSplit (non-leaf node) objects and DockTree (leaf node) objects. The Split property returns the root DockTreeSplit tree node.

Use DockTreeClient in the control template of DockControl, bind the DockControl property to its template parent.

See Also