FrameworkElement.LogicalChildren Property

Definition

Gets an enumerator for logical child elements of this element.

protected public:
 virtual property System::Collections::IEnumerator ^ LogicalChildren { System::Collections::IEnumerator ^ get(); };
protected internal virtual System.Collections.IEnumerator LogicalChildren { get; }
member this.LogicalChildren : System.Collections.IEnumerator
Protected Friend Overridable ReadOnly Property LogicalChildren As IEnumerator

Property Value

An enumerator for logical child elements of this element.

Remarks

LogicalChildren allows you to iterate over child elements. This is useful for elements that may not have a defined, dedicated collection but still contain more than one child element, particularly FrameworkContentElement child elements.

For more information on how to use LogicalChildren and AddLogicalChild, see Trees in WPF.

Applies to

See also