在Python的Tkinter库中,可以使用以下方法退出应用程序:
使用`destroy()`方法
`destroy()`方法会释放窗口所占用的资源,并关闭窗口。
示例代码:
```python
import tkinter as tk
def close_window():
root.destroy()
root = tk.Tk()
button = tk.Button(root, text="关闭窗口", command=close_window)
button.pack()
root.mainloop()
```
使用`quit()`方法
`quit()`方法会关闭所有打开的窗口,并退出程序。
示例代码:
```python
import tkinter as tk
def close_window():
root.quit()
root = tk.Tk()
button = tk.Button(root, text="关闭窗口", command=close_window)
button.pack()
root.mainloop()
```
绑定协议方法`WM_DELETE_WINDOW`
可以使用`protocol()`方法来捕获窗口关闭事件,并将其绑定到我们定义的函数。
示例代码:
```python
import tkinter as tk
def on_closing():
if tk.messagebox.askokcancel("退出", "你确定要退出吗?"):
root.destroy()
root = tk.Tk()
root.protocol("WM_DELETE_WINDOW", on_closing)
draw_button = tk.Button(root, text="Quit", command=on_closing)
draw_button.grid(row=1, column=2)
root.mainloop()
```
根据你的需求选择合适的方法即可。通常情况下,使用`destroy()`方法可以更好地控制窗口关闭时的资源释放,而`quit()`方法则适用于快速退出程序的场景。