如何获取/设置鼠标相对于应用程序窗口的位置?
我希望能够获取鼠标指针相对于表单窗口所在位置的当前位置。因此,如果我将鼠标放在表单的左上角,它会给我 x=0 和 y=0 的 x 和 y 值,而表单本身可能位于屏幕中间。
我还想设置鼠标的位置。
在 C# 中如何做到这一点?我正在使用 Windows 窗体应用程序。
I want to be able to get the current location of the mouse pointer, relative from where my form window is. So if I would put my mouse on the top left of the form, it would give me the x and y values of x=0 and y=0, while the form itself might be in the middle of the screen.
Also I want to set the position of the mouse.
How can this be done in C#? I'm using a windows forms application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Cursor.Position< 获取屏幕坐标/a>,然后调用 转换为窗口坐标窗口上的 PointToClient。
Obtain the screen coordinates by using Cursor.Position, then convert to window coordinates invoking PointToClient on the window.
查看 Cursor.Position财产
Check out the Cursor.Position property