Interface ILayoutContainer
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
ChildrenCount
Gets the number of children of this layout container.
int ChildrenCount { get; }
Property Value
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
ILayoutElementnewElement
ILayoutElement