c#查找指定窗口的子窗口的句柄

c#查找指定窗口的子窗口的句柄

ID:10020287

大小:141.50 KB

页数:7页

时间:2018-05-21

c#查找指定窗口的子窗口的句柄_第1页
c#查找指定窗口的子窗口的句柄_第2页
c#查找指定窗口的子窗口的句柄_第3页
c#查找指定窗口的子窗口的句柄_第4页
c#查找指定窗口的子窗口的句柄_第5页
资源描述:

《c#查找指定窗口的子窗口的句柄》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

1、C#查找指定窗口的子窗口的句柄用axWebBrowser加载HTML网页时,真正显示内容的窗体并不是axWebBrowser,而是其子窗口的子窗口一个名为InternetExplorer_Server的类。从spy++可知: 公司需要在网页上进行手写,需要对InternetExplorer_Server进行操作,而通过axWebBrowser的Handle不能直接操作InternetExplorer_Server。于是在网上搜到PaulDiLascia写的一个CFindWnd类,是用C++写的,由于我用C#进行了改写。这个类主要用的的API是EnumChil

2、dWindows和FindWindowEx,第一个遍历指定窗口下的子窗口,第二个查找指定名称的窗口,如果找到返回此窗口Handle。该类的用法:FindWindowfw=newFindWindow(wndHandle,"ChildwndClassName");//实例化,第一个参数是要查找的起始窗口的句柄;第二个参数是要查找的窗口的类的名称。现在我们需要的传的是"InternetExplorer_Server"。IntPtrip=fw.FoundHandle;//FindWindow的公共属性FoundHandle就是查找到的窗口的句柄。完整的类如下: us

3、ing System;using System.Collections.Generic;using System.Text;using System.Runtime.InteropServices;namespace SystemManager.Utility...{    /**//// 

    /// This class is to find the given window's child window accroding to the given child window's name.    /// The useage: Fi

4、ndWindow fw = new FindWindow(wndHandle, "ChildwndClassName"); IntPtr ip = fw.FoundHandle;    /// I adapt the code from Paul DiLascia,who is the MSDN Magazine's writer.    /// The original class is named CFindWnd which is written in C++, and you could get it on Internet.    /// www.

5、pinvoke.net is a great website.It includes almost all the API fuctoin to be used in C#.    /// 

    class FindWindow    ...{        [DllImport("user32")]        [return: MarshalAs(UnmanagedType.Bool)]        //IMPORTANT : LPARAM  must be a pointer (InterPtr) in VS2005, oth

6、erwise an exception will be thrown        private static extern bool EnumChildWindows(IntPtr window, EnumWindowProc callback, IntPtr i);        //the callback function for the EnumChildWindows        private delegate bool EnumWindowProc(IntPtr hWnd, IntPtr parameter);        //if f

7、ound  return the handle , otherwise return IntPtr.Zero        [DllImport("user32.dll", EntryPoint = "FindWindowEx")]        private static extern IntPtr FindWindowEx(IntPtr hwndParent, IntPtr hwndChildAfter, string lpszClass, string lpszWindow);  private string m_classname; // clas

8、s name to look for        

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。