In my Silverlight application, I can\'t seem to bring focus to a TextBox control. On the recommendation of various posts, I\'ve set the IsTabStop property to True and I\'m
thanks Santiago Palladino Dispatcher worked for me perfectly. What I am doing is:
this.Focus(); then Dispatcher.BeginInvoke(() => { tbNewText.Focus();});