在C#中创建Firefox或chrome的实例

时间:2015-07-24 18:43:15

标签: c# google-chrome firefox

我可以用C#

创建IE实例
// start the browser
SHDocVw.InternetExplorer m_IExplorer = new SHDocVw.InternetExplorer();


// go to home page
m_WebBrowser = (SHDocVw.WebBrowser)m_IExplorer;

并在其活动中工作 BeforeNavigate DownloadBegin

我可以这样做并在Firefox或Chrome中使用此事件吗

1 个答案:

答案 0 :(得分:0)

您可以启动所需浏览器的过程:

Process.Start(@"%AppData%\..\Local\Google\Chrome\Application\chrome.exe", "url");

但您无法访问活动。