本文介绍了删除VB.NET中DataGridView控件中的一行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在 vb.net 中处理 DataGridView 控件.我需要你我想要的帮助删除数据网格中的一行,只有该行删除了谁选择.意思是首先我选择行然后删除行.所以请提供我如何选择和删除行的代码VB.NET中的DataGridView控件
I am working on DataGridView control in vb.net. I need help you that i wantto delete a row in datagrid and only that row deleted who selected.Mean first i select the row then row deleted.So please provide me code that how i select and delete row fromDataGridView control in VB.NET
谢谢
推荐答案
For Each row As DataGridViewRow In yourDGV.SelectedRows
yourDGV.Rows.Remove(row)
Next
这将删除所有已选择的行.
This will delete all rows that had been selected.
这篇关于删除VB.NET中DataGridView控件中的一行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!