Panel.InternalChildren 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 a UIElementCollection of child elements.
protected public:
property System::Windows::Controls::UIElementCollection ^ InternalChildren { System::Windows::Controls::UIElementCollection ^ get(); };
protected internal System.Windows.Controls.UIElementCollection InternalChildren { get; }
member this.InternalChildren : System.Windows.Controls.UIElementCollection
Protected Friend ReadOnly Property InternalChildren As UIElementCollection
Property Value
An ordered collection of UIElement objects. This property has no default value.
Remarks
The returned collection includes items that are added directly in code, and also items that are generated by data binding.
Classes that are derived from Panel should use this property, instead of the Children property, for internal overrides such as MeasureCore and ArrangeCore.