If you did not find a solution to the other answers, then how I solved the problem.
Application.Current.Dispatcher.BeginInvoke(new Action(() => { TEXTBOX_OBJECT.Focus(); }), DispatcherPriority.Render);
From what I understand, other solutions may not work, because the Focus() call is called before the application displays the other components.
EasyJoin Dev May 24 '19 at 9:23 AM- 05-05-24 09:23
source share