Class LayoutRoot
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
BottomSide
Gets or sets the bottom side of the layout root.
public LayoutAnchorSide BottomSide { get; set; }
Property Value
Children
Gets the child elements of the layout root.
public IEnumerable<ILayoutElement> Children { get; }
Property Value
ChildrenCount
Gets the number of child elements of the layout root.
public int ChildrenCount { get; }
Property Value
FloatingWindows
Gets the floating windows that are part of this layout.
public ObservableCollection<LayoutFloatingWindow> FloatingWindows { get; }
Property Value
Hidden
Gets the hidden anchorables in the layout.
public ObservableCollection<LayoutAnchorable> Hidden { get; }
Property Value
LastFocusedDocument
public LayoutContent LastFocusedDocument { get; }
Property Value
LeftSide
Gets or sets the left side of the layout root.
public LayoutAnchorSide LeftSide { get; set; }
Property Value
Manager
Gets/sets the docking manager root control for this library.
public DockingManager Manager { get; }
Property Value
RightSide
Gets or sets the right side of the layout root.
public LayoutAnchorSide RightSide { get; set; }
Property Value
RootPanel
Gets/sets the root layout panel that contains the LayoutDocumentPane.
public LayoutPanel RootPanel { get; set; }
Property Value
TopSide
Gets or sets the top side of the layout root.
public LayoutAnchorSide TopSide { get; set; }
Property Value
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
ILayoutElementnewElement
ILayoutElement
Events
ElementAdded
Raised when an element is added to the layout.
public event EventHandler<LayoutElementEventArgs> ElementAdded
Event Type
ElementRemoved
Raised when an element is removed from the layout.
public event EventHandler<LayoutElementEventArgs> ElementRemoved
Event Type
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