2

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

Thank you

Sam Holder
  • 32,535
  • 13
  • 101
  • 181
Artur Carvalho
  • 6,901
  • 10
  • 76
  • 105

2 Answers2

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.

Artur Carvalho
  • 6,901
  • 10
  • 76
  • 105
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.

Jignesh.Raj
  • 5,776
  • 4
  • 27
  • 56