标签: python python-3.x tkinter
我在Tkinter中创建了一个简单的GUI,并尝试将其转换为应用程序。程序中有一个手动退出按钮,当它是python程序时可以工作,但在制作应用程序时则不行。我的代码是:
memset
答案 0 :(得分:1)
只需使用root.destroy。
root.destroy
因此,您必须将按钮声明行修改为:
b1 = Button(root,text = " X ", command = root.destroy, bg = None)