python如何绑定control + shift + 0(零)

时间:2019-01-24 03:17:26

标签: python python-3.x tkinter

我尝试了几种组合键,例如Control-Shift-0,Control-),Control-Shift-Key-0,但是它们都不起作用。

此链接https://github.com/furas/python-examples/tree/master/tkinter/events-names似乎告诉我要使用Control-Shift-Key-0,但无法正常工作。我的其他绑定(例如Control-0)没有问题,这就是我的绑定方式。

self.master.bind('<Control-Shift-Key-0>', lambda event: self.clear(0))

我100%确信该功能正常运行,因为我也将其放在菜单栏中,并且可以正常工作。

我不必使用此键绑定,但是了解如何做会有所帮助。

我正在使用Windows 10和Python 3.7。

0 个答案:

没有答案