如何为datagridview中的DataGridViewButtonColumn定制按钮点击事件
我用了一个datagridview,其中有DataGridViewButtonColumn列,还有其他形式的列,如何为其中DataGridViewButtonColumn列的按钮定制单击事件? --------------------编程问答-------------------- 哈哈正在学习中啊--------------------编程问答-------------------- 有高手会吗?急啊
如何能取得单元格相应的控件对象? --------------------编程问答-------------------- Private Sub datagv_CellContentClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles datagv.CellContentClick
Dim CIndex As Integer = e.ColumnIndex
If CIndex = 8 Then
editForm.ShowDialog()
End If
End Sub --------------------编程问答-------------------- 首先你自己更改的列类型 你还不知道在那一列啊?如更改第一列为buttion那么这一列所有的项都是buttion
cellDoubleClick 事件不就是你想要的么?
在事件中判断 cell类型及值 进行你自己的操作
补充:.NET技术 , C#