我正在制作一个GUI,并希望添加一个退出按钮来关闭窗口。唯一的问题是,当我添加一个包含以下代码的按钮时:
root = Tk()
Exit = Button(root, text = "Quit", command = root.quit()).grid(row = 6, column = 1)
GUI窗口崩溃。我正在运行Windows 7和Python 3.2。
答案 0 :(得分:3)
试试这个:
root = Tk()
Exit = Button(root, text = "Quit", command = root.quit).grid(row = 6, column = 1)
在root.quit()中我取出了括号。看看是否能解决问题