如何将焦点设置到 datagridview 中新插入或更新的行?所以插入/更新的人不必去查找用户插入/更新的数据。
我可以使用这个=>(DataGridView - 可以使用代码将焦点放在带有(*)的空白行上吗?)
如何将焦点设置到 datagridview 中新插入或更新的行?所以插入/更新的人不必去查找用户插入/更新的数据。
我可以使用这个=>(DataGridView - 可以使用代码将焦点放在带有(*)的空白行上吗?)
早上好,
if (theGrid.Rows.Count > 0)
{
theGrid.CurrentCell = theGrid.Rows[theGrid.Rows.Count - 1].Cells[0];
}
SendKeys.Send("{DOWN}");
转到最后一行并找到新行。
试试看,它可能对你有帮助,
// dataGridView1.Rows[0].Cells[1].Selected = true;
dataGridView1.Focus();
dataGridView1.CurrentCell = dataGridView1.Rows[0].Cells[2];
如果它最终以交叉线程等等等等结尾..然后调用新方法。
只需更改行索引
dataGridView1.CurrentCell = dataGridView1.Rows[datagridview.rows.count].Cells[2];
int LastIndex = dataGridView1.Rows.Count - 1;
dataGridView1.Rows[LastIndex].Cells[1].Focus();
这就是你在asp.net c#中的做法