4

我正在制作一个桌面搜索应用程序。我需要一种将网络浏览器目标设置为 Google Chrome 的方法。即,如果有人单击我的应用程序中的按钮,它将打开带有网站而不是 Internet Explorer 的 Chrome。

4

1 回答 1

11

以 url 作为第一个 arg 运行 chrome exe

chrome.exe xkcd.com

所以像...

Process.Start("pathToChrome\\chrome.exe", "xkcd.com")

于 2012-06-01T11:52:31.013 回答