Tkinter
Button具有三种状态:
active, normal, disabled。
您将
state选项设置
disabled为灰色按钮,使其无响应。
active鼠标悬停在其上时具有该值,默认值为
normal。
使用此功能,您可以检查按钮的状态并采取所需的措施。这是工作代码。
from tkinter import *fenster = Tk()fenster.title("Window")def switch(): if b1["state"] == "normal": b1["state"] = "disabled" b2["text"] = "enable" else: b1["state"] = "normal" b2["text"] = "disable"#--Buttonsb1 = Button(fenster, text="Button", height=5, width=7)b1.grid(row=0, column=0)b2 = Button(text="disable", command=switch)b2.grid(row=0, column=1)fenster.mainloop()
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)