Panel.Children Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
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
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.