Created
December 1, 2016 08:02
-
-
Save ichengzi/0f812a2df3a69aa23ca5b15e5dfd3a51 to your computer and use it in GitHub Desktop.
wpf技巧
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//enter键转tab键: | |
private void EnterKey_To_TabKey(object sender, KeyEventArgs e) | |
{ | |
if (e.Key == Key.Enter) | |
{ | |
TraversalRequest request = new TraversalRequest(FocusNavigationDirection.Next); | |
((FrameworkElement)sender).MoveFocus(request); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment