这是我的 DataGridView 的 SelectionChanged 事件中的代码:
Dim a as Integer
a = DataGridView1.CurrentRow.Index 'this certain line contains the error
TextBox1.Text = DataGridView1.Item(0,a).Value
'and all that jazz
代码运行,但是当单击单元格后跟任何列标题时,会显示错误。
我尝试将此代码块放在另一个名为 CellContentClick 的事件中,但与 SelectionChanged 相比,单击 datagridview 中的单元格的响应速度不快。
有想法该怎么解决这个吗?