我想更改网格单元格上的焦点。
假设我单击一个单元格[1,1],然后我想将焦点设置在单元格[1,2]上。
其中cell[1,1]
表示(第 1 列)和(第 1 行)的单元格
您可以使用 AfterCellActivate 事件并编写此代码
void grid_AfterCellActivate(object sender, EventArgs e)
{
if (grid.ActiveCell != null &&
grid.ActiveCell.Column.Index == 1 &&
grid.ActiveCell.Row.Index == 1)
{
grid.ActiveCell = grid.Rows[1].Cells[2];
// And if you want also to automatically
// put your cell in edit mode add this line
grid.PerformAction(UltraGridAction.EnterEditMode);
}
}