Is there a way to download a Silverlight application in F11 mode directly? I used
window.open(url, '_self', 'toolbar=no,status=no,location=no,menubar=no,resizable=yes,scrollbars=no,fullscreen=yes', 'true'); HtmlPage.window.invoke("launchPage",url);
But the problem is that two instances of my application open. One in the normal screen, and the other in full screen.
I tried
App.Current.Host.Content.IsFullScreen = true;
in the constructor of App.xaml
Still not working. :( Where am I going wrong?
source share