Hello,
Welcome to Microsoft Q&A!
Based on your scenario, you could just call the TextBox.Focus() Method to make the TextBox focus again. It's just a simple line of code and you could put it after you enable the TextBox.
For example:
MyTextBox.IsEnabled = true;
MyTextBox.Focus(FocusState.Programmatic);
Thank you.
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.