如何结束 Tkinter 程序?假设我有这个代码:
from Tkinter import *
def quit():
# code to exit
root = Tk()
Button(root, text="Quit", command=quit).pack()
root.mainloop()
我应该如何定义quit
退出我的应用程序的函数?
您应该使用destroy()
关闭 tkinter 窗口。
from Tkinter import *
root = Tk()
Button(root, text="Quit", command=root.destroy).pack()
root.mainloop()
解释:
root.quit()
上面这行只是绕过了root.mainloop()
ie ,如果执行了命令,ieroot.mainloop()
仍然会在后台运行。quit()
root.destroy()
虽然destroy()
命令消失,root.mainloop()
即root.mainloop()
停止。
因此,当您只想退出程序时,您应该使用root.destroy()
它将停止mainloop()
.
但是如果你想运行一些无限循环并且你不想破坏你的 Tk 窗口并且想在root.mainloop()
一行之后执行一些代码,那么你应该使用root.quit()
. 前任:
from Tkinter import *
def quit():
global root
root.quit()
root = Tk()
while True:
Button(root, text="Quit", command=quit).pack()
root.mainloop()
#do something
def quit()
root.quit()
或者
def quit()
root.destroy()
import tkinter as tk
def quit(root):
root.destroy()
root = tk.Tk()
tk.Button(root, text="Quit", command=lambda root=root:quit(root)).pack()
root.mainloop()
我认为您错误地理解了 Tkinter 的退出功能。这个函数不需要你定义。
首先,您应该如下修改您的函数:
from Tkinter import *
root = Tk()
Button(root, text="Quit", command=root.quit).pack()
root.mainloop()
然后,你应该使用'.pyw'后缀来保存这个文件并双击'.pyw'文件来运行你的GUI,这一次你可以通过点击按钮结束GUI,你也可以发现不会出现令人不快的 DOS 窗口。(如果您运行“.py”文件,退出功能将失败。)
退出 Python 程序的常用方法:
sys.exit()
(您也可以向其传递退出状态)或
raise SystemExit
在 Tkinter 程序中可以正常工作。
在混乱的情况下照明...
def quit(self):
self.destroy()
exit()
A) destroy() 停止主循环并杀死窗口,但让 python 运行
B) exit() 停止整个过程
只是为了澄清以防有人错过了 destroy() 正在做什么,并且 OP 还询问了如何“结束” tkinter 程序。
你只需要输入这个:
root.destroy()
并且您甚至不需要 quit() 函数,因为当您将其设置为命令时,它将退出整个程序。
最简单的方法是单击红色按钮(在 macOS 上最左边,在 Windows 上最右边)。如果要将特定功能绑定到按钮小部件,可以这样做:
class App:
def __init__(self, master)
frame = Tkinter.Frame(master)
frame.pack()
self.quit_button = Tkinter.Button(frame, text = 'Quit', command = frame.quit)
self.quit_button.pack()
或者,为了让事情更复杂一点,使用协议处理程序和destroy()
方法。
import tkMessageBox
def confirmExit():
if tkMessageBox.askokcancel('Quit', 'Are you sure you want to exit?'):
root.destroy()
root = Tk()
root.protocol('WM_DELETE_WINDOW', confirmExit)
root.mainloop()
如果有人想将他们的 Escape 按钮绑定到关闭整个 GUI:
master = Tk()
master.title("Python")
def close(event):
sys.exit()
master.bind('<Escape>',close)
master.mainloop()
你不必打开一个函数来关闭你的窗口,除非你正在做一些更复杂的事情:
from Tkinter import *
root = Tk()
Button(root, text="Quit", command=root.destroy).pack()
root.mainloop()
在idlelib.PyShell
模块中,root
类型变量Tk
被定义为全局变量
在PyShell.main()
函数结束时,它调用root.mainloop()
函数,这是一个无限循环,它一直运行到循环被root.quit()
函数中断。因此,root.quit()
只会中断执行mainloop
为了销毁与该 idlelib 窗口相关的所有小部件,root.destroy()
需要调用,这是idlelib.PyShell.main()
函数的最后一行。
我通常使用默认的 tkinterquit
函数,但你可以自己做,像这样:
from tkinter import *
from tkinter.ttk import *
window = Tk()
window.geometry('700x700') # 700p x 700p screen
def quit(self):
proceed = messagebox.askyesno('Quit', 'Quit?')
proceed = bool(proceed) # So it is a bool
if proceed:
window.quit()
else:
# You don't really need to do this
pass
btn1 = Button(window, text='Quit', command=lambda: quit(None))
window.mainloop()
对于菜单栏:
def quit():
root.destroy()
menubar = Menu(root)
filemenu = Menu(menubar, tearoff=0)
filemenu.add_separator()
filemenu.add_command(label="Exit", command=quit)
menubar.add_cascade(label="menubarname", menu=filemenu)
root.config(menu=menubar)
root.mainloop()
我使用以下代码退出 Tkinter 窗口:
from tkinter import*
root=Tk()
root.bind("<Escape>",lambda q:root.destroy())
root.mainloop()
或者
from tkinter import*
root=Tk()
Button(root,text="exit",command=root.destroy).pack()
root.mainloop()
或者
from tkinter import*
root=Tk()
Button(root,text="quit",command=quit).pack()
root.mainloop()
或者
from tkinter import*
root=Tk()
Button(root,text="exit",command=exit).pack()
root.mainloop()
下面的代码片段。我提供了一个小场景。
import tkinter as tk
from tkinter import *
root = Tk()
def exit():
if askokcancel("Quit", "Do you really want to quit?"):
root.destroy()
menubar = Menu(root, background='#000099', foreground='white',
activebackground='#004c99', activeforeground='white')
fileMenu = Menu(menubar, tearoff=0, background="grey", foreground='black',
activebackground='#004c99', activeforeground='white')
menubar.add_cascade(label='File', menu=fileMenu)
fileMenu.add_command(label='Exit', command=exit)
root.config(bg='#2A2C2B',menu=menubar)
if __name__ == '__main__':
root.mainloop()
我在这里创建了一个空白窗口并在同一个窗口(根窗口)上添加了文件菜单选项,我只添加了一个选项exit。
然后只需为root运行 mainloop。
尝试做一次
当然,您可以将命令分配给按钮,如下所示,但是,如果您正在制作 UI,建议将相同的命令分配给“X”按钮:
def quit(self): # Your exit routine
self.root.destroy()
self.root.protocol("WM_DELETE_WINDOW", self.quit) # Sets the command for the "X" button
Button(text="Quit", command=self.quit) # No ()
有一个简单的单行答案:
写 -exit()
在命令中
就是这样!