vote up 4 vote down star

Hi

I'm new to the Hyperlink control. I wish to have a hyperlink in a regular WPF window which will navigate to a URL by opening the standard browser. I have added the hyperlink, but it does nothing. I guess it was a bit much to hope for.

Before I implement a handler to do the work myself, can anyone please confirm that the Hyperlink control will navigate only within pages?

Thanks

flag

1 Answer

vote up 5 vote down check

You will need to do it yourself.

The simplest way to do it is to handle the Hyperlink.RequestNavigate event and call Process.Start with the URL. (This will open the default browser).

link|flag
1  
Thanks, just what I needed! – Tor Haugen Oct 20 at 12:53
3  
I would just add that if you plan on having several hyperlinks in your application that it would be wise to handle the Hyperlink.RequestNavigate event as a routed event rather than hook the event on every single Hyperlink instance. – Drew Marsh Oct 20 at 15:42

Your Answer

Get an OpenID
or

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