如何从 MouseDown 获取全球位置?
我正在开发 WinForms 应用程序,需要记录 MouseDown 和 MouseUp 事件的位置。 我的问题是事件发生在不同的控件上,因此它们的坐标系不匹配(我需要的只是拖动量)。 我尝试添加发送控件的位置,但它仍然无法正常工作。
有没有简单的解决方案?
I'm working on a WinForms app and need to record the location of MouseDown and MouseUp events. My problem is that the events happen on different controls so their coordinate systems don't match (all I need is the amount of drag). I tried adding in the location of the sending control but it still doesn't work right.
Is there a simple solution to this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 PointToScreen 方法目的。 您的鼠标处理程序代码可能如下所示:
You may use PointToScreen method for the purpose. Your mouse handler code could then look like this: