RowDefinitionCollection.Count 属性

定义

获取此 RowDefinitionCollection 实例中的项总数。

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

属性值

Int32

集合中的项总数。 此属性没有默认值。

实现

示例

以下示例演示如何使用 Count 该属性。

private void rowCount(object sender, RoutedEventArgs e)
{
    tp2.Text = "The current number of Rows is: " + grid1.RowDefinitions.Count;
}
Private Sub rowCount(ByVal sender As Object, ByVal e As RoutedEventArgs)
    tp2.Text = "The current number of Rows is: " + grid1.RowDefinitions.Count.ToString()
End Sub

若要查看完整的示例,请参阅 如何:使用 ColumnDefinitionsCollections 和 RowDefinitionsCollections 操作列和行

注解

RowDefinitionCollection 使用从零开始的索引系统。

适用于

另请参阅