VB.NET 中删除DataGridView中所选行的小例子: 代码如下:For Each r As DataGridViewRow In DataGridView1.SelectedRows If Not r.IsNewRow Then DataGridView1.Rows.Remove(r) End IfNext其实就是一个IsNewRow属性,判断是不是为新选中的行,如果不是,remove!
导读VB.NET 中删除DataGridView中所选行的小例子: 代码如下:For Each r As DataGridViewRow In DataGridView1.SelectedRows If Not r.IsNewRow Then DataGridView1.Rows.Remove(r) End IfNext其实就是一个IsNewRow属性,判断是不是为新选中的行,如果不是,remove!
代码如下: For Each r As DataGridViewRow In DataGridView1.SelectedRows If Not r.IsNewRow Then DataGridView1.Rows.Remove(r) End If Next
其实就是一个IsNewRow属性,判断是不是为新选中的行,如果不是,remove!
VB.NET 中删除DataGridView中所选行的小例子
VB.NET 中删除DataGridView中所选行的小例子: 代码如下:For Each r As DataGridViewRow In DataGridView1.SelectedRows If Not r.IsNewRow Then DataGridView1.Rows.Remove(r) End IfNext其实就是一个IsNewRow属性,判断是不是为新选中的行,如果不是,remove!