VB.NET 中删除DataGridView中所选行的小例子

时间:2022-09-17 20:59:44
代码如下:

For Each r As DataGridViewRow In DataGridView1.SelectedRows
    If Not r.IsNewRow Then
        DataGridView1.Rows.Remove(r)
    End If
Next

其实就是一个IsNewRow属性,判断是不是为新选中的行,如果不是,remove!