vb.net 2008 在鼠标单击DataGridView 某一行时 获取这行的值

我最后这样解决的】rows=DataGridView1.CurrentCellAddress.Y.ToString()'得到选中行的索引值ID=CInt(DataGrid... 我最后这样解决的 】
rows = DataGridView1.CurrentCellAddress.Y.ToString() ' 得到选中行的索引值
ID = CInt(DataGridView1.Rows(rows).Cells(0).Value)
Name = CStr(DataGridView1.Rows(rows).Cells(1).Value)
Desc = CStr(DataGridView1.Rows(rows).Cells(2).Value)
Group = CStr(DataGridView1.Rows(rows).Cells(3).Value)
Date = CStr(DataGridView1.Rows(rows).Cells(4).Value)
这样更简单一点 谢谢!
展开
 我来答
uouo99
推荐于2016-08-15 · TA获得超过561个赞
知道小有建树答主
回答量:655
采纳率:0%
帮助的人:340万
展开全部
Private Sub DataGridView1_CurrentCellChanged(By Val sender As Object, By Val e As System.EventArgs) Handles DataGridView1.CurrentCellChanged

//获取选中行第一列的值,也就是第0列的值
Dim result1 As String = DataGridView1.Item(0, DataGridView1.CurrentCell.RowIndex).Value.ToString.Trim

//获取选中行第二列的值,也就是第1列的值
Dim result1 As String = DataGridView1.Item(1, DataGridView1.CurrentCell.RowIndex).Value.ToString.Trim

'......有几列就写几列,如果感觉这样写代码比较累赘,你可以放到for循环里面,把列数用一个变量i代替旧可以了

End sub
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式