RowDefinitionCollection.RemoveAt(Int32) 方法

定义

RowDefinition 中移除指定索引位置处的 RowDefinitionCollection

public:
 virtual void RemoveAt(int index);
public void RemoveAt (int index);
abstract member RemoveAt : int -> unit
override this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)

参数

index
Int32

从集合中移除 RowDefinition 的位置。

实现

示例

以下示例演示如何使用 RemoveAt 方法将 删除 RowDefinitionRowDefinitionCollection 特定 index 位置的 。

private void removeRow(object sender, RoutedEventArgs e)
{
    if (grid1.RowDefinitions.Count <= 0)
    {
        tp1.Text = "No More Rows to Remove!";
    }
    else
    {
        grid1.RowDefinitions.RemoveAt(0);
    }
}
Private Sub removeRow(ByVal sender As Object, ByVal e As RoutedEventArgs)
    If (grid1.RowDefinitions.Count <= 0) Then
        tp1.Text = "No More Rows to Remove!"
    Else
        grid1.RowDefinitions.RemoveAt(0)
    End If
End Sub

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

注解

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

适用于

另请参阅