Panel.Children Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
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.