Silverlight 3 allows you to launch your application from a browser , which sets the link on the desktop / start menu.
The problem is that we are currently using
System.Windows.Browser.HtmlPage.
Window.Navigate(new Uri("http://<server>/<resource>"), "_blank")
to load the URL into a new browser window (so that it provides printing for printing). This works in the normal SL version in the browser, but outside the browser we get "DOM / scripting bridge disabled." an exception that occurred when calling a call.
Is there an alternative that works in the browser?
I saw Open a page in silverlight from a browser , but I need to do this completely in code, so I don’t want to add a (hidden) hyperlink button, and then programmatically 'click' (if I don’t have to ...).
source
share