C# 获取每个光标位置
我怎样才能获得用户完成的每个光标移动?即使它不符合我的形式? 在谷歌上我看到 getcursorpos 但如何获得该功能?或者还有别的什么吗?
谢谢!
How can i get every cursor movement thats done by the user? even if its out of my form?
on google i see getcursorpos but how to get that function? or is there something else?
THNX!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用 Windows API 创建一个钩子。有关使用 Windows api 的挂钩的一般信息,请参阅此链接 并且 codeproject 似乎对全局钩子有解释 这里 和一些其他随机代码启用和禁用挂钩的示例 在这里。不过,我没有测试过最后两个。因此,我建议您深入研究一下 windows api 挂钩信息(第一个链接)并自己编写一个:)。
You have to create a hook using the windows API. For general information on hooks using windows api see this link and codeproject seems to have an explanation on global hooks here and some other random code example giving enable and disable hooks here. I have tested non of those last two though. So I suggest you dive a bit into the windows api hook information (first link) and write one yourself :).