I was wandering how to end Cell Edit mode when user press <Enter> key in UltraTree.
I trigger the cell editing using the following statements:
node.BringCellIntoView(column);
node.ActivateCell(column);
node.BeginCellEdit(column);
TreeKeyActionMapping keyMapping = new TreeKeyActionMapping( Keys.Enter, UltraTreeAction.ExitEditModeOnCellSaveChanges, 0, UltraTreeState.CellInEditMode, SpecialKeys.All, 0);
this.ultraTree1.KeyActionMappings.Add( keyMapping );