WPF:如何在代码中定位鼠标光标?
我正在无边框窗口上实现系统菜单(恢复、移动、大小...),并且我希望在选择大小或移动时将鼠标光标移动到窗口的中心。
最好使用 VB,但 C# 也可以。
I am implementing the system menu (Restore, Move, Size...) on a borderless window, and I want the mouse cursor to move to the center of the Window when size or move is selected.
Ideally in VB but C# is fine as well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
SetCursorPos
函数,例如:You can use the
SetCursorPos
function, something like:进行一些调整,似乎有效:
...
A few tweaks and it seems to work:
...