datagridview vb.net中特定单元格的单击事件
问题描述:
我在datagridview中有一个单元格,该单元格位于第8行第二列。该单元格和该单元格只有在单击时才想显示为另存为对话框,但实际上我可以得到特定单元格发生的点击事件,我该怎么办
I have a cell in a datagridview its located at the 8th row 2nd column That cell and that cell only if clicked I want to show as save as dialoguebox but I can actually get a click event happening for a specific cell how do I do this in vb.net?
答
在您的dataGridView事件 DataGridView1_CellClick中添加此代码:
In you dataGridView Event "DataGridView1_CellClick" add this code :
Private Sub DataGridView1_CellClick(sender As Object, e As DataGridViewCellEventArgs) Handles DataGridView1.CellClick
If e.ColumnIndex = 2 And e.RowIndex = 8 Then
'Do any thing
MsgBox("yes" + DataGridView1.Item(e.ColumnIndex, e.RowIndex).Value.ToString())
End If
End Sub