我可以用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中使用此事件吗
答案 0 :(得分:0)
您可以启动所需浏览器的过程:
Process.Start(@"%AppData%\..\Local\Google\Chrome\Application\chrome.exe", "url");
但您无法访问活动。