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 属性将子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集合只能由 对象组成UIElement。 UIElement将子元素添加到 隐Panel式地将其添加到 元素的 Panel 。UIElementCollection
不要将此集合与派生 Panel 类一起使用;请改用 集合 InternalChildren 。
如果 已绑定数据,Panel则此属性返回 null
。