tkinter事件鍵盤綁定 1 from tkinter import * 2 3 root=Tk() 4 5 #創建一個框架,在這個框架中響應事件 6 frame=Frame(root, 7 width=200,height=200, 8 background='green') 9 10 def ...
tkinter事件鍵盤綁定
1 from tkinter import * 2 3 root=Tk() 4 5 #創建一個框架,在這個框架中響應事件 6 frame=Frame(root, 7 width=200,height=200, 8 background='green') 9 10 def callBack(event): 11 print(event.char)# 按哪個鍵,在Shell中列印 12 13 14 frame.bind("<Key>",callBack) 15 frame.pack() 16 17 #當前框架被選中,意思是鍵盤觸發,只對這個框架有效 18 frame.focus_set() 19 20 mainloop()