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();
}

適用対象