Hi,
I want the cells in a UltraGrid to enter in editmode on key stroke;
The .NET DataGridView has the property EditMode, which I set to onKeyStrokeOrF2, accomplishing this feature, but I can't seem to find a similiar one in the UltraGrid.
Thanks.
This is what do..I use the grid's keydown event and:
if (e.KeyCode == Keys.Enter){ if (ugEquip.ActiveCell.CanEnterEditMode) ugEquip.PerformAction(UltraGridAction.EnterEditMode);}