使用Python捕获Windows点击事件
我正在尝试在 Windows 上使用 Python 捕获左/右/双击事件。我可以用 win32api 做到这一点吗?
例如,每次我单击某个地方时,我希望它打印出单击位置的确切坐标以及单击的类型。
有人想给我指出正确的方向吗?
I'm trying to capture left/right/double click events with Python on Windows. Can I do this with win32api?
For example, every time I click somewhere, I want it to print out the exact coordinates of the place it was clicked and what type of click it was.
Someone want to point me in the right direction, please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许 PyHook 就是您正在寻找的
Maybe PyHook is what you are looking for
尝试使用以下代码:
您可以为左/右/双击添加适当的信号
gtk .window
事件
来源
Try with this code:
You can add the appropriate signals for left/right/double click
gtk.window
Events
source