Panel.Children プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
この 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 を返します。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET