SyntaxFix
Write A Post
Hire A Developer
Questions
Try putting this in the constructor of whatever control is housing your textbox:
Loaded += (sender, e) => { MoveFocus(new TraversalRequest(FocusNavigationDirection.Next)); myTextBox.SelectAll(); }