...in Silverlight. No tags in the title, and all that. I'm using Silverlight 4 on Chrome, though I've tried it on IE too. I've tried:
System.Windows.Browser.HtmlPage.Plugin.Focus();
this.Focus();
Dispatcher.BeginInvoke(() => { textBox_username.Focus(); });
And various combinations thereof (as suggested by a similar thread), as well as a separate method that was attached to the form loaded event. The above gets me the closest, since clicking anywhere on the page gives my textbox focus, like the plugin isn't getting focus still. Could be because this is the first window viewed?