Panel.Children プロパティ

定義

この UIElementCollection の子要素の 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

プロパティ値

UIElementCollection。 既定値は空の UIElementCollection です。

次のコード例では、 プロパティを使用 Children して要素に子を UIElement 追加する方法を Panel 示します。

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)

注釈

要素のPanelコレクションはChildren、オブジェクトのみで構成UIElementできます。 に子をUIElement追加すると、 Panel 要素の Panel に暗黙的にUIElementCollection追加されます。

派生 Panel クラスではこのコレクションを使用しないでください。代わりに コレクションを InternalChildren 使用してください。

このプロパティは、 null がデータバインドされている場合に Panel を返します。

適用対象

こちらもご覧ください