How to set the focus on an TextBox element in WPF
TextBox
I have this code:
txtCompanyID.Focusable = true; txtCompanyID.Focus();
None of this worked for me as I was using a grid rather than a StackPanel.
I finally found this example: http://spin.atomicobject.com/2013/03/06/xaml-wpf-textbox-focus/
and modified it to this:
In the 'Resources' section:
In my grid definition: