Panel.Children Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient une UIElementCollection d'éléments enfants de ce 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
Valeur de propriété
UIElementCollection La valeur par défaut correspond à une UIElementCollection vide.
Exemples
L’exemple de code suivant montre comment utiliser la Children propriété pour ajouter un UIElement enfant à un Panel élément.
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)
Remarques
La Children collection d’un Panel élément ne peut se composer que d’objets UIElement . L’ajout d’un UIElement enfant à un Panel l’ajoute implicitement à l’élément UIElementCollection pour l’élément Panel .
N’utilisez pas cette collection avec des classes dérivées Panel ; utilisez plutôt la InternalChildren collection.
Cette propriété retourne null
si est lié aux Panel données.