0

这是我设置当前单元格的代码:

dvFromAlloc.CurrentCell = dvFromAlloc(1, 0)

这在加载事件中如何不起作用,为什么不起作用?

感谢您的帮助

4

3 回答 3

0

你试试这个代码

DataGridView1.CurrentCell = DataGridView1.Rows[1].Cells[0];

或验证此链接

数据网格视图单元格聚焦

于 2013-09-09T01:54:37.223 回答
0

DGV.Focus() DGV.CurrentCell = DGV.Rows(0).Cells(2)

于 2014-01-22T12:16:05.840 回答
0

设置当前单元格:

dvFromAlloc.CurrentCell = dvFromAlloc.Item(1, 5)

或者

dvFromAlloc.CurrentCell = dvFromAlloc.Item("ColumnName", 5)

您可以通过以下方式直接关注编辑:

dvFromAlloc.BeginEdit(true)
于 2019-04-07T06:32:26.607 回答