2009-06-10 10 views

Répondre

5
Process.Start("http://www.google.com"); 

Ou, si vous voulez l'ouvrir dans la même application.

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

vous pouvez également utiliser un LinkLabel comme this

Questions connexes