如何制作一个应用程序,可以捕获按 Enter 键时的所有单击,但在我的 WinForm 中也是如此?
我尝试开发一个应用程序,该应用程序可以对所有鼠标单击和当我按“输入”键时进行屏幕截图进行教程,但我不知道如何在应用程序之外捕获这些事件。我怎样才能做到这一点???
i try to develop an application who make a screenshot all mouseclick and when i hit the key "enter" for make a tutorial, but i don't see how capture this events where they are outside of my application. How i can do that ???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用这个项目“在C#中处理全局鼠标和键盘挂钩”。我以前用过它,而且我个人总是推荐它。
如何使用它:
将对
Gma.UserActivityMonitor
dll 的引用添加到您的项目中。use this project "Processing Global Mouse and Keyboard Hooks in C#". I used it before and I personally always recommend it.
How to use it:
add reference tot the
Gma.UserActivityMonitor
dll to your project.您需要了解如何实现 Windows 挂钩。
You need to have a look in to implementing windows hooks.