In a WPF application, i have a window that has a lot of fields. When the user uses the TAB key after filling each field, windows understands that it moves on to the next. Th
I think the best solution is:
var ue = e.OriginalSource as FrameworkElement; if (e.Key == Key.Return) { e.Handled = true; ue.MoveFocus(new TraversalRequest(FocusNavigationDirection.Next)); }