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?

link|improve this question
feedback

4 Answers

There's a sample in the Sample App Pack that does this.

    // Launch a URI.
    private async void LaunchUriButton_Click(object sender, RoutedEventArgs e)
    {
        // Create the URI to launch from a string.
        var uri = new Uri(uriToLaunch);

        // Launch the URI.
        bool success = await Windows.System.Launcher.LaunchUriAsync(uri);
        if (success)
        {
            rootPage.NotifyUser("URI launched: " + uri.AbsoluteUri, NotifyType.StatusMessage);
        }
        else
        {
            rootPage.NotifyUser("URI launch failed.", NotifyType.ErrorMessage);
        }
    }
link|improve this answer
Which sample is this from? – Richard May 23 at 10:47
feedback

I blogged about wiring up HyperlinkButton in Windows8 XAML to launch internet explorer

http://zubairahmed.net/?p=266

link|improve this answer
Your code combined with the success/failure handling in Michael V's answer would be perfect. Still confused why they've removed NavigateUri though. – Richard May 23 at 10:39
feedback

I don't know about Silverlight but in WPF (almost same as SL) we have TextBlock whose inline tag is Hyperlink.

<TextBlock>
    Some text 
    <Hyperlink 
        NavigateUri="http://somesite.com"
        RequestNavigate="Hyperlink_RequestNavigate">
        some site
    </Hyperlink>
    some more text
</TextBlock>

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.

link|improve this answer
Inline Hyperlink control is not available in the consumer preview version of WinRT. – Richard May 23 at 10:35
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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.