tkinter,消息框关闭程序点击" ok"

时间:2016-08-12 16:12:13

标签: python tkinter

如果用户在消息框中点击确定,如何关闭整个程序?

以下是包含按钮和命令的脚本部分:

class Application(tk.Tk):
    def create_options(self):

        tk.Button(self,
                  text = "Begin search", command=self.pop_up1
                  ).place(x=465, y=285)

    def pop_up1(self):
        """shows submitted box"""
        tkMessageBox.showinfo(title="Finished", message="Query Submitted")

1 个答案:

答案 0 :(得分:1)

这取决于你退出整个程序的意思,你可以通过使用关闭窗口 self.root.destroy() 但是根据您的实现,关闭窗口可能不会结束您的程序,但通常这是关闭tkinter应用程序的方式。只需将其添加到按钮事件的末尾即可。