FrameworkElement.LogicalChildren Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.