I need to add a hyperlink button that directs to a webpage to my metro style apps written with C# and XAML. As in Silverlight, there is no NavigateURI option. Is there any other option to make a hyperlink redirect to a specific webpage?
|
feedback
|
|
There's a sample in the Sample App Pack that does this.
| |||
|
feedback
|
|
I blogged about wiring up HyperlinkButton in Windows8 XAML to launch internet explorer | |||
feedback
|
|
I don't know about Silverlight but in WPF (almost same as SL) we have TextBlock whose inline tag is Hyperlink.
U said "as in silverlight there is no NavigateURI option in this". No Problem. i didn't knew about this feature of NavigateURI b4. so what i did was when the user clicked on that link it called the browser to open my requested link. In mouse over i changed cursor to look like hand and text color as red and on mouse leave back to default color (Blue) and cursor (Arrow). I think u got my point. | |||
feedback
|
|
Windows.System.Launcher has methods to open the appropriate app for a given Uri or StorageFile. Just wire that up to the click event of your button | |||
|
feedback
|