Panel.Children Proprietà

Definizione

Ottiene un UIElementCollection di elementi figlio di questo 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

Valore della proprietà

Oggetto UIElementCollection. L'impostazione predefinita è un oggetto UIElementCollection vuoto.

Esempio

Nell'esempio di codice seguente viene illustrato come usare la Children proprietà per aggiungere un UIElement elemento figlio a un Panel elemento.

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)

Commenti

L'insieme Children di un Panel elemento può essere costituito solo da UIElement oggetti. L'aggiunta di un elemento figlio a un UIElement elemento aggiunge in modo implicito all'elemento UIElementCollectionPanel .Panel

Non usare questa raccolta con classi derivate Panel . Usare invece la InternalChildren raccolta.

Questa proprietà restituisce null se l'oggetto Panel è associato ai dati.

Si applica a

Vedi anche