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 属性将子Panel元素添加到 UIElement 元素。

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)

注解

Children元素的Panel集合只能由 对象组成UIElementUIElement将子元素添加到 隐Panel式地将其添加到 元素的 PanelUIElementCollection

不要将此集合与派生 Panel 类一起使用;请改用 集合 InternalChildren

如果 已绑定数据,Panel则此属性返回 null

适用于

另请参阅