Panel.InternalChildren Property

Definition

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.

Applies to

See also