Panel.Children Propriedade

Definição

Obtém um UIElementCollection de elementos filho deste 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 da propriedade

UIElementCollection

Um UIElementCollection. O padrão é um UIElementCollection vazio.

Exemplos

O exemplo de código a seguir demonstra como usar a Children propriedade para adicionar um UIElement filho a um 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)

Comentários

A Children coleção de um Panel elemento só pode consistir em UIElement objetos. Adicionar um UIElement filho a um Panel implicitamente o UIElementCollection Panel adiciona ao elemento.

Não use essa coleção com classes derivadas Panel ; use a InternalChildren coleção em vez disso.

Essa propriedade retornará null se os Panel dados estiverem associados.

Aplica-se a

Confira também