Table of Contents

Class LayoutRoot

Namespace
HeBianGu.Control.Dock.Layout
Assembly
HeBianGu.Control.Dock.dll

Implements the root of the layout viewmodel (see Layout property). This root includes a RootPanel property for binding content, side panel properties and many other layout related root items.

This class implements PropertyChanged and PropertyChanging to support direct UI binding scenarios with view updates supported.

[Serializable]
public class LayoutRoot : LayoutElement, ILayoutContainer, ILayoutElement, INotifyPropertyChanged, INotifyPropertyChanging, ILayoutRoot, IXmlSerializable
Inheritance
LayoutRoot
Implements
Inherited Members
Extension Methods

Constructors

LayoutRoot()

Standard class constructor

public LayoutRoot()

Properties

ActiveContent

Gets the active LayoutContent-derived element.

public LayoutContent ActiveContent { get; set; }

Property Value

LayoutContent

BottomSide

Gets or sets the bottom side of the layout root.

public LayoutAnchorSide BottomSide { get; set; }

Property Value

LayoutAnchorSide

Children

Gets the child elements of the layout root.

public IEnumerable<ILayoutElement> Children { get; }

Property Value

IEnumerable<ILayoutElement>

ChildrenCount

Gets the number of child elements of the layout root.

public int ChildrenCount { get; }

Property Value

int

FloatingWindows

Gets the floating windows that are part of this layout.

public ObservableCollection<LayoutFloatingWindow> FloatingWindows { get; }

Property Value

ObservableCollection<LayoutFloatingWindow>

Hidden

Gets the hidden anchorables in the layout.

public ObservableCollection<LayoutAnchorable> Hidden { get; }

Property Value

ObservableCollection<LayoutAnchorable>

LastFocusedDocument

public LayoutContent LastFocusedDocument { get; }

Property Value

LayoutContent

LeftSide

Gets or sets the left side of the layout root.

public LayoutAnchorSide LeftSide { get; set; }

Property Value

LayoutAnchorSide

Manager

Gets/sets the docking manager root control for this library.

public DockingManager Manager { get; }

Property Value

DockingManager

RightSide

Gets or sets the right side of the layout root.

public LayoutAnchorSide RightSide { get; set; }

Property Value

LayoutAnchorSide

RootPanel

Gets/sets the root layout panel that contains the LayoutDocumentPane.

public LayoutPanel RootPanel { get; set; }

Property Value

LayoutPanel

TopSide

Gets or sets the top side of the layout root.

public LayoutAnchorSide TopSide { get; set; }

Property Value

LayoutAnchorSide

Methods

CollectGarbage()

Removes any empty container not directly referenced by other layout items.

public void CollectGarbage()

ConsoleDump(int)

public override void ConsoleDump(int tab)

Parameters

tab int

RemoveChild(ILayoutElement)

Removes a particular child element from this layout container.

public void RemoveChild(ILayoutElement element)

Parameters

element ILayoutElement

ReplaceChild(ILayoutElement, ILayoutElement)

Replaces a particular child element with a new element in this layout container.

public void ReplaceChild(ILayoutElement oldElement, ILayoutElement newElement)

Parameters

oldElement ILayoutElement
newElement ILayoutElement

Events

ElementAdded

Raised when an element is added to the layout.

public event EventHandler<LayoutElementEventArgs> ElementAdded

Event Type

EventHandler<LayoutElementEventArgs>

ElementRemoved

Raised when an element is removed from the layout.

public event EventHandler<LayoutElementEventArgs> ElementRemoved

Event Type

EventHandler<LayoutElementEventArgs>

Updated

Raised when the layout is updated. This event is raised via HeBianGu.Control.Dock.Layout.LayoutRoot.FireLayoutUpdated() method when a parent of a LayoutElement has changed.

public event EventHandler Updated

Event Type

EventHandler