在Tkinter中单击后禁用按钮

时间:2013-12-15 16:35:22

标签: python button tkinter

我是Python的新手,我正在尝试使用Tkinter创建一个简单的应用程序。

def appear(x):
    return lambda: results.insert(END, x)

letters=["A", "T", "D", "M", "E", "A", "S", "R", "M"] 

for index in range(9): 
    n=letters[index] 
    nButton = Button(buttons, bg="White", text=n, width=5, height=1,
    command =appear(n), relief=GROOVE).grid(padx=2, pady=2, row=index%3,
    column=index/3)

我要做的是点击它们后禁用按钮。 我试过了

def appear(x):
    nButton.config(state="disabled")
    return lambda: results.insert(END, x)

但它给了我以下错误:

  

NameError:未定义全局名称'nButton'

2 个答案:

答案 0 :(得分:3)

这里有一些问题:

  1. 每当您动态创建窗口小部件时,您需要在集合中存储对它们的引用,以便以后可以访问它们。

  2. Tkinter小部件的grid方法始终返回None。因此,您需要在自己的行上调用grid

  3. 每当您为需要参数的函数指定按钮的command选项时,必须使用lambda或类似的方法来“隐藏”该函数的调用,直到单击该按钮。有关详细信息,请参阅https://stackoverflow.com/a/20556892/2555451

  4. 以下是解决所有这些问题的示例脚本:

    from Tkinter import Tk, Button, GROOVE
    
    root = Tk()
    
    def appear(index, letter):
        # This line would be where you insert the letter in the textbox
        print letter
    
        # Disable the button by index
        buttons[index].config(state="disabled")
    
    letters=["A", "T", "D", "M", "E", "A", "S", "R", "M"]
    
    # A collection (list) to hold the references to the buttons created below
    buttons = []
    
    for index in range(9): 
        n=letters[index]
    
        button = Button(root, bg="White", text=n, width=5, height=1, relief=GROOVE,
                        command=lambda index=index, n=n: appear(index, n))
    
        # Add the button to the window
        button.grid(padx=2, pady=2, row=index%3, column=index/3)
    
        # Add a reference to the button to 'buttons'
        buttons.append(button)
    
    root.mainloop()
    

答案 1 :(得分:0)

这对我目前正在进行的工作非常有帮助,可以添加一个小修正

from math import floor



button.grid(padx=2, pady=2, row=index%3, column=floor(index/3))