I need to open a popup from a Silverlight Out-of-Browser application.
I added a parameter <param name="enablehtmlaccess" value="true" />to Index.html, but executed this from the code:
HtmlPage.Window.Navigate(new Uri(myUrl), "_blank", myFeatures);
still returns an error:
Silverlight OOB Error: The DOM/scripting bridge is disabled.
I read about this article, does this mean that I cannot open a popup from OOB? Why do I need this, because in fact I showed the HTML page in OOB Silverlight using the control WebBrowserin ChildWindow, but when I click on the anchor link on the HTML page that is associated with the _blank page, it goes to my default browser, It does not meet the requirements, except that for the first time this HTML index page is launched in the default browser, invoked using the control button in OOB Silverlight. Is it possible?
I ask for advice, thanks.
source
share