my code in Grid_PreviewKeyDown event:
then the cell is selected but not move a cursor and open to edit .. without double click mouse on cell. why??
var uie = e.OriginalSource as UIElement; if (e.Key == Key.Enter) { e.Handled = true; uie.MoveFocus( new TraversalRequest( FocusNavigationDirection.Next)); }
then the cell is selected but not move a cursor and open to edit .. without double click mouse on cell. why??