UIElementCollection.Count 属性

定义

获取集合中元素的实际数目。

public:
 virtual property int Count { int get(); };
public virtual int Count { get; }
member this.Count : int
Public Overridable ReadOnly Property Count As Integer

属性值

集合中元素的实际数目。

实现

示例

以下示例使用 Count 属性对 中 UIElementCollection子元素的数量进行计数。

void GetCount(object sender, RoutedEventArgs e)
{
    TextBlock txt3 = new TextBlock();
    sp1.Children.Add(txt3);
    txt3.Text = "UIElement Count is equal to " + sp1.Children.Count.ToString();
}

适用于