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