tags:

views:

151

answers:

2

Hi,

I want to open a new browser window with a specific url (say http://google.com") when I click a button in my wpf application. How to do it?

+1  A: 
Process.Start("http://www.google.com");

Or, if you want to open it in the same application :

NavigationWindow window = new NavigationWindow();
window.Source = new Uri("http://www.google.com");
window.Show();
Thomas Levesque
A: 

You can also use a LinkLabel like this.

Samuel Jack