Open page in silverlight out of browser
Asked Answered
L

2

2

Is there any way to open a page in the browser by clicking the app in out-of-browser mode?

Thank you

Lagting answered 9/9, 2009 at 17:31 Comment(0)
L
2

HyperlinkButton works. I was trying with HtmlPage.Window.Navigate with no success. And because the button supports content it is simple to create something like a linked image.

Lagting answered 9/9, 2009 at 23:32 Comment(0)
D
2

Agreed with Artur and simple way to do this is :

1) Put HyperLink Button in your Silverlight page. 2) Generate Click event and provide :

hyperlink.NavigateUri = new Uri("Url",UriKind.RelativeOrAbsolute);

3) Simply Run the Application and Click on HyperLink Button.

Denham answered 26/12, 2012 at 5:30 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.