我想使用C#自动化Internet Explorer。 因此,我编写了简单的控制台应用程序,它创建了InternetExplorer的新实例,然后在某些事件上注册。
以下活动正常工作:OnQuit
,BeforeNavigate2
和NewWindow2
但NewWindow3
没有。所有内容都会编译并且程序可以启动,但是当您在另一个窗口中打开链接时会抛出以下异常:Eine Ausnahme (erste Chance) des Typs "System.ArgumentException" ist in mscorlib.dll aufgetreten.
那么我对这件事做错了什么?我已经完全使用了DWebBrowserEvents2_NewWindow3EventHandler
编辑:因为这似乎是库中的一个错误,是否有可能创建自己的EventHandler方法/回调的东西? 我做了一些研究并找到了这个页面:How do I add an event listener using MSHTML's addEventListener in IE9? 有人使用回调方法创建COM类。
=>如何扩展InternetExplorer类以便我可以访问NewWindow3EventHanlder?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using SHDocVw;
using MSHTML;
using Microsoft.VisualBasic;
namespace BrowserControl
{
class Program
{
private ManualResetEvent closed;
private InternetExplorer ie;
public Program()
{
closed = new ManualResetEvent(false);
}
private void setupIE(InternetExplorer ie = null)
{
if (ie == null)
{
this.ie = ie = new InternetExplorer();
Console.WriteLine(Information.TypeName(ie)+" "+Information.TypeName(ie.Application));
}
ie.NewWindow3 += new DWebBrowserEvents2_NewWindow3EventHandler(NewWindow3);
ie.NewWindow2 += new DWebBrowserEvents2_NewWindow2EventHandler(NewWindow2);
ie.BeforeNavigate2 += BeforeNavigate2;
ie.OnQuit += OnQuit;
ie.Visible = true;
}
public void NewWindow2(ref object ppDisp, ref bool Cancel)
{
Console.WriteLine("new window 2");
}
public void NewWindow3(ref object ppDisp, ref bool Cancel, uint dwFlags, string bstrUrlContext, string bstrUrl)
{
Console.WriteLine("new window 3");
}
public void BeforeNavigate2(object pDisp, ref object URL, ref object Flags, ref object TargetFrameName, ref object PostData, ref object Headers, ref bool Cancel)
{
IWebBrowser2 cie = (IWebBrowser2)pDisp;
Console.WriteLine(cie.LocationURL + " navigates to " + URL + " target=" + TargetFrameName + " ...");
}
public void OnQuit()
{
Console.WriteLine("quit");
closed.Set();
}
static void Main(string[] args)
{
Program p = new Program();
Console.WriteLine("Starting Browser ...");
p.setupIE();
Console.WriteLine("Up And Running!");
p.closed.WaitOne();
Console.WriteLine("Shutting down ...");
System.Threading.Thread.Sleep(2000);
}
}
}