Panel.Children Propiedad

Definición

Obtiene un UIElementCollection de elementos secundarios de este 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

Valor de propiedad

UIElementCollection

Objeto UIElementCollection. El valor predeterminado es un UIElementCollection vacío

Ejemplos

En el ejemplo de código siguiente se muestra cómo usar la Children propiedad para agregar un UIElement elemento secundario 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)

Comentarios

La Children colección de un Panel elemento solo puede constar de UIElement objetos . Al agregar un UIElement elemento secundario a un Panel elemento , se agrega implícitamente al UIElementCollection elemento para el Panel elemento .

No use esta colección con clases derivadas Panel ; use la InternalChildren colección en su lugar.

Esta propiedad devuelve null si está enlazado a Panel datos.

Se aplica a

Consulte también