编程语言
首页 > 编程语言> > 如何使用C#连接到Internet Explorer的打开的窗口?

如何使用C#连接到Internet Explorer的打开的窗口?

作者:互联网

您可以在C#程序中使用COM / OLE连接到Internet Explorer的正在运行的实例吗?

理想情况下,我想找到在IE中打开的所有网页的URL.

解决方法:

我找到了答案here,代码摘录是:

public class Form1 : System.Windows.Forms.Form
{
    static private SHDocVw.ShellWindows shellWindows = new
    SHDocVw.ShellWindowsClass();

    public Form1()
    {
       InitializeComponent();    
       foreach(SHDocVw.InternetExplorer ie in shellWindows)
       {
           MessageBox.Show("ie.Location:" + ie.LocationURL);
           ie.BeforeNavigate2 += new
           SHDocVw.DWebBrowserEvents2_BeforeNavigate2EventHandler(this.ie_BeforeNavigate2);
       }
}

 public void ie_BeforeNavigate2(object pDisp , ref object url, ref object Flags, ref object TargetFrameName, ref object PostData, ref object Headers, ref bool Cancel)
 {
  MessageBox.Show("event received!");
 } 
}

有人知道该网页上的代码是否也适用于IE 6吗?我在7日进行了测试.谢谢!

标签:ole,internet-explorer,com,c
来源: https://codeday.me/bug/20191106/1998886.html