Panel.Children Vlastnost

Definice

Získá podřízené UIElementCollection prvky tohoto Panel.

public:
 property System::Windows::Controls::UIElementCollection ^ Children { System::Windows::Controls::UIElementCollection ^ get(); };
public System.Windows.Controls.UIElementCollection Children { get; }
member this.Children : System.Windows.Controls.UIElementCollection
Public ReadOnly Property Children As UIElementCollection

Hodnota vlastnosti

UIElementCollection

Úloha UIElementCollection. Výchozí hodnota je prázdná UIElementCollection.

Příklady

Následující příklad kódu ukazuje, jak použít Children vlastnost k přidání podřízeného UIElement Panel prvku.

StackPanel myStackPanel = new StackPanel();
Button myButton = new Button();
myButton.Content = "Press me";
myStackPanel.Children.Add(myButton);
Dim myStackPanel As New StackPanel()
Dim myButton As New Button()
myButton.Content = "Press me"
myStackPanel.Children.Add(myButton)

Poznámky

Kolekce Children elementu Panel se může skládat pouze z UIElement objektů. Přidání podřízeného UIElement objektu Panel do implicitně přidá do UIElementCollection prvku Panel .

Nepoužívejte tuto kolekci s odvozenými Panel třídami; místo toho použijte kolekci InternalChildren .

Tato vlastnost vrátí null , pokud Panel je svázána s daty.

Platí pro

Viz také