UIElementCollection.Count 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取集合中元素的实际数目。
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();
}