获取 VB.net 中鼠标当前所在窗体的句柄
是否可以根据位置(即鼠标位置)获取表单句柄(无论它是否是我的程序)?
Is it possible to get a forms handle (regardless if it is my program or not) based on position (i.e. the mouse position)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
并传递 Cursor.Position 来获取当前“可见”窗口的句柄。
Try:
and pass
Cursor.Position
to get the handle over the current 'visible' window.