Python 3 中 Tkinter 的键盘快捷键
Tkinter 窗口包含许多内置功能,这些功能可用于各种应用程序开发。在某些情况下,我们必须借助一些键或函数来运行应用程序的特定部分。可以通过将特定键与包含操作函数的回调函数绑定来实现。该键可以是鼠标按钮到键盘键的任意键。我们甚至可以将回调函数与键盘键组合绑定。
示例
#Import the Tkinter Library from tkinter import * #Create an instance of Tkinter Frame win = Tk() #Set the geometry of window win.geometry("700x350") #Define a callback function for exit def quit_program(e): win.destroy() #Add a Label widget label = Label(win, text= "Press Ctrl + x to Exit", font= ('Helvetica 15 bold')) label.pack(pady= 40) #Bind the Keyboard shortcut Key win.bind('<Control-x>', quit_program) win.mainloop()
输出
在以上代码中,我们添加了键组合。按这些键将会关闭窗口。
广告