当前位置:编程学习 > C#/ASP.NET >>

有没有方法可以获得datagridview 选中单元格的所在列的标题

有没有方法可以获得datagridview 选中单元格的所在列的标题
请高手指点 --------------------编程问答-------------------- currentcell.rowindex 当前单元格的行索引
currentcell.columnindex 当前单元格的列索引.

columns(index).headertext  列标题.
--------------------编程问答--------------------

Dim colIndex As Integer

If dgv.CurrentCell Is Nothing Then
    Return
End If

colIndex = dgv.CurrentCell.ColumnIndex

If colIndex < 0 Then
    Return
End If

MessageBox.Show(dgv.Columns(colIndex).HeaderText)
--------------------编程问答-------------------- 太感谢了,你们都是高手 --------------------编程问答-------------------- ***.text=me.datagridview1.currentrow.cells(0).value --------------------编程问答-------------------- 2楼正解
补充:.NET技术 ,  VB.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,