当前位置:Gxlcms > asp.net > VB.NET 中删除DataGridView中所选行的小例子

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

时间:2021-07-01 10:21:17 帮助过:45人阅读

代码如下:
For Each r As DataGridViewRow In DataGridView1.SelectedRows
    If Not r.IsNewRow Then
        DataGridView1.Rows.Remove(r)
    End If
Next

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

人气教程排行