One of my colleagues asked me if it is possible to resize the Browser Window from within Silverlight application. Well, my answer was: “everything what is possible to do from JavaScript is possible to do from Silverlight”. Here is sample code how to do it in case someone else is also looking for the solution: if ( HtmlPage .BrowserInformation.UserAgent.ToLower().IndexOf( "chrome" ) < 0) { HtmlPage .Window.Invoke( "moveTo" , new object [] { 100, 100 }); HtmlPage .Window.Invoke...