UIElementCollection::Count Property
.NET Framework (current version)
Gets the actual number of elements in the collection.
Assembly: PresentationFramework (in PresentationFramework.dll)
Implements
ICollection::CountThe following example uses the Count property to count the number of child elements in a 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(); }
.NET Framework
Available since 3.0
Available since 3.0
Show: