WPF 怎么激发Tab键

WPF 如何激发Tab键?winform中 System.Windows.Forms.SendKeys.Send({Tab})WPF 中如何激发Tab键?[解决办

WPF 如何激发Tab键?
winform中 System.Windows.Forms.SendKeys.Send("{Tab}");

WPF 中如何激发Tab键?
[解决办法]
WPF用你当前焦点所在的FrameworkElement对象的MoveFocus方法:

FrameworkElement.MoveFocus(new TraversalRequest(FocusNavigationDirection.Next));