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?
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?
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();