单按钮多个事件取决于其他按钮背景tkinter

时间:2019-02-19 10:54:11

标签: python tkinter

我有一个按钮(B),其功能应取决于其他按钮的单击。可以说我有3个可靠的按钮(b1,b2,b3),通过单击它可以更改背景。 我对3个按钮使用了以下命令来更改背景颜色。

B = Button(frame, image=logo, command=data)
b1 = Button(frame, text = "v", command=lambda:b1.config(bg="gray))
b2 = Button(frame, text = "v", command=lambda:b2.config(bg="gray))
b3 = Button(frame, text = "v", command=lambda:b3.config(bg="gray))

因此,当我单击按钮时,背景颜色变为灰色。但是,我想一次只创建一个按钮。因此,我想在单击一个按钮时将其他按钮更改为前景。通过使用背景色,我想编写按钮B的命令功能。

我尝试如下,但是没有按我的意愿工作:

def data():
    if b1.configure(bg="gray):
       data1()
    if b2.configure(bg="gray):
       data2()
    if b3.configure(bg="gray):
       data3()
    else:
        print('no data')

def data1():
    as per my requirement 
def data2():
    as per my requirement 
def data3():
     as per my requirement 

但是,尽管单击了按钮,但我没有任何数据。

很高兴听到一些建议。

1 个答案:

答案 0 :(得分:5)

要获得所需的行为,您需要为每个按钮更改command方法。您可以为每个按钮定义单独的处理程序,如下所示:

b1 = Button(frame, text = "v", command=b1_pressed)
b2 = Button(frame, text = "v", command=b2_pressed)
b3 = Button(frame, text = "v", command=b3_pressed)

def b1_pressed():
    b1.config(bg="gray")
    b2.config(bg="red")  # Or any other color.
    b3.config(bg="red")

def b2_pressed():
    b1.config(bg="red")
    b2.config(bg="gray")
    b3.config(bg="red")

def b3_pressed():
    b1.config(bg="red")
    b2.config(bg="red")
    b3.config(bg="gray")

重复很多,所以您可以做的是将已按下按钮的信息传递给处理程序。

b1 = Button(frame, text = "v", command=lambda: button_pressed(b1))
b2 = Button(frame, text = "v", command=lambda: button_pressed(b2))
b3 = Button(frame, text = "v", command=lambda: button_pressed(b3))

def button_pressed(button):
    for b in [b1, b2, b3]:
        if b is button:
            b.config(bg="gray")
        else:
            b.config(bg="red")

我们需要那里的lambda来包装对button_pressed的调用,以便我们可以传递值(就像您当前在示例中对config所做的那样)。目标函数获取此按钮引用,并将其与可能的按钮列表中的每个成员进行比较。如果匹配,则将该按钮设置为灰色,否则将其设置为红色。