如何在.net中获取对Internet Explorer窗口句柄的引用

时间:2016-11-05 00:37:26

标签: c# internet-explorer com com-interop

基本上我正在尝试获取我在C#中自动化的Internet Explorer实例的HWND。

        SHDocVw.InternetExplorer IE = new SHDocVw.InternetExplorer();
        IE.AddressBar = false;
        IE.MenuBar = false;
        IE.OnQuit += IE_OnQuit;
        IE.Visible = true;
        IE.Navigate2("www.bing.com");

我想获得对它的窗口句柄的引用以进一步操作,但是如何做到这一点的唯一例子是在C ++中,我不知道如何在C#中做类似的事情。 msdn给出的示例是here

1 个答案:

答案 0 :(得分:4)

获取HWND非常简单:

.join()