tags:

views:

23

answers:

1

I've found some fairly long-winded ways to do this, but can't believe it's that hard. I want to create a hyperlink to a web page and make that link into a WPF MenuItem.

The hyperlink should ideally open in the default browser. IE would be OK at a pinch.

Any ideas?

+2  A: 

Use Process:

Process.Start("http://www.google.com");
Jérémie Bertrand
I didn't know you could do that! Thank you. If nobody else answers in a more WPF-idiomatic way then this will do the trick.
Lunivore
Okay, that does the trick.
Lunivore