UIElementCollection.Count Propriété

Définition

Obtient le nombre réel d'éléments dans la collection.

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

Valeur de propriété

Nombre réel d'éléments dans la collection.

Implémente

Exemples

L’exemple suivant utilise la Count propriété pour compter le nombre d’éléments enfants dans un 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();
}

S’applique à