2016-03-03 17 views

Antwort

2

Sie konnten die AfterCellActivate Ereignis verwenden und diesen Code schreiben sehr viel

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); 
    } 

} 
+0

thankyou. –