本文介绍如何使用C#获取指定(当前鼠标位置处)窗口的句柄。
工具/原料
VisualStudio(本文使用VS2013,其他版本亦可)。
基础知识
1、获取鼠标位置处窗口句柄,需要使用到Win32Ap坡纠课柩i函数WindowFromPoint,用来根据坐标获取窗口句柄,C#徂葛幢捎引用如下:[DllImport("user32.dll",EntryPoint="WindowFromPoint")]//指定坐标处窗体句柄publicstaticexternintWindowFromPoint(intxPoint,intyPoint);只要能够获取鼠标的位置,然后调用该函数就可以得到窗口句柄。
2、获取鼠标位置,需要使用鼠标钩子,本文使用已经设计好的鼠标钩子类,关于该类的详细信息见参考资料。
编程实例
1、启动VS,新建C#WinForm项目,如图:
2、引用Win32Api和MouseHook鼠标钩子类,详见参考资料。
3、在Form1中添加4个Label控件,并布局如下:
4、在Form1中添加代码,如下:publicpartialclassFor葡矩酉缸m1:Form{publi艘早祓胂cForm1(){InitializeComponent();}MouseHookmh;privatevoidForm1_Load(objectsender,EventArgse){//安装鼠标钩子mh=newMouseHook();mh.SetHook();mh.MouseMoveEvent+=mh_MouseMoveEvent;}voidmh_MouseMoveEvent(objectsender,MouseEventArgse){//当前鼠标位置intx=e.Location.X;inty=e.Location.Y;lb_p.Text=string.Format("({0},{1})",x,y);inthwnd=Win32Api.WindowFromPoint(x,y);//获取指定坐标处窗口的句柄lb_h.Text=hwnd.ToString();}privatevoidForm1_FormClosed(objectsender,FormClosedEventArgse){mh.UnHook();}}
5、完成之后,调试运行,结果如下: