Table of Contents

Interface ILayoutContainer

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

Defines an interface that is implemented by a layout model that can contain other LayoutElements (LayoutGroup<T>, LayoutPane etc).

public interface ILayoutContainer : ILayoutElement, INotifyPropertyChanged, INotifyPropertyChanging
Inherited Members
Extension Methods

Properties

Children

Gets all children elements of this layout container.

IEnumerable<ILayoutElement> Children { get; }

Property Value

IEnumerable<ILayoutElement>

ChildrenCount

Gets the number of children of this layout container.

int ChildrenCount { get; }

Property Value

int

Methods

RemoveChild(ILayoutElement)

Removes a particular child element from this layout container.

void RemoveChild(ILayoutElement element)

Parameters

element ILayoutElement

ReplaceChild(ILayoutElement, ILayoutElement)

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

void ReplaceChild(ILayoutElement oldElement, ILayoutElement newElement)

Parameters

oldElement ILayoutElement
newElement ILayoutElement