如何通过 Tkinter 中的单个“bind”绑定多个事件?
对于特定应用程序,若我们希望通过其中定义的按钮执行多项任务,则可以使用 bind(Button, callback) 方法将按钮与事件绑定在一起,以计划在应用程序中运行该事件。
假设我们希望使用单个 <bind> 绑定多个事件或回调,则必须首先遍历所有小部件,才能将其作为单个实体。此实体现在可以进行配置,以便在应用程序中绑定多个小部件。
示例
# Import the required libraries from tkinter import * from tkinter import ttk # Create an instance of tkinter frame or window win = Tk() # Set the size of the window win.geometry("700x350") def change_bgcolor(e): label.config(background="#adad12") def change_fgcolor(e): label.config(foreground="white") # Add a Label widget label = Label(win, text="Hello World! Welcome to Tutorialspoint", font=('Georgia 19 italic')) label.pack(pady=30) # Add Buttons to trigger the event b1 = ttk.Button(win, text="Button-1") b1.pack() # Bind the events for b in [b1]: b.bind("<Enter>", change_bgcolor) b.bind("<Leave>", change_fgcolor) win.mainloop()
输出
如果我们运行以上代码,它将显示一个包含按钮的窗口。
将鼠标悬停在按钮上时,它会更改标签的背景颜色。离开按钮将更改标签小部件的字体颜色。
广告