我在为我的程序制作键盘快捷键时遇到问题。我无法让root.bind("<Control-Shift-s>",function)
工作,但root.bind("<Control-s>",function)
完美无缺。这是示例代码:
from tkinter import *
root = Tk()
def function():
print("This is a function")
root.bind("<Control-Shift-s>",function) # Doesn't work
root.bind("<Control-s>",function) # Works perfectly
root.mainloop()
答案 0 :(得分:0)
变化:
root.bind("<Control-Shift-s>",function) # Doesn't work
其中一个:
root.bind("<
控制 -
Shift_L ><
取值&GT; ",function)
< / LI>
root.bind("<
控制 -
Shift_R ><
取值 >",function)
root.bind("<
控制 -
移 -
取值 >",function)