Panel.Children Özellik

Tanım

UIElementCollection Bu Panelöğesinin alt öğelerini alır.

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

Özellik Değeri

UIElementCollection

Bir UIElementCollection. Varsayılan değer boş UIElementCollectionbir değeridir.

Örnekler

Aşağıdaki kod örneği, bir öğeye alt Panel öğe eklemek UIElement için özelliğinin nasıl kullanılacağını Children gösterir.

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)

Açıklamalar

Bir Children Panel öğenin koleksiyonu yalnızca nesnelerden UIElement oluşabilir. Bir UIElement alt öğeye Panel örtük olarak öğesi için Panel eklerUIElementCollection.

Bu koleksiyonu türetilmiş Panel sınıflarla kullanmayın; bunun yerine koleksiyonu kullanın InternalChildren .

Bu özellik, veri bağlıysa Panel döndürürnull.

Şunlara uygulanır

Ayrıca bkz.