C# WinForm中打开一个超链接

打开一个超链接
System.Diagnostics.Process.Start("http://www.google.com");


这样会占用现有的窗口,能不能让IE新开一个窗口?

我们只要把代码改成:
System.Diagnostics.Process.Start("iexplore.exe","http://www.google.com");

你可能感兴趣的:(超链接,窗口,C#,WinForm)