1

Is it possible to have a TaskBarIcon class constantly checking for key presses? So I have an icon in the taskbar, and it's waiting for the user to press say, Alt+S, once they do it triggers a function?

4

1 回答 1

0

不,TaskBarIcon 只检测鼠标事件。您必须以某种方式连接到操作系统本身才能捕捉按键。在 Windows 上,您将使用 PyWin32 包之类的东西。另请参阅 StackOverflow 的以下答案:

第二个链接提到了可能对您有用的PyKeyLogger 项目。但是,它只支持 Windows 和 Linux。

于 2013-04-15T13:27:21.753 回答