tkinter退出按钮
时间: 2023-06-25 18:02:33 浏览: 375
一键退出功能
在使用 tkinter 创建 GUI 程序时,我们通常需要为窗口添加一个退出按钮,以方便用户退出程序。以下是一个简单的示例代码,演示如何在 tkinter 窗口中添加一个退出按钮:
```python
import tkinter as tk
root = tk.Tk()
# 创建一个 Button,点击该 Button 可以退出程序
exit_button = tk.Button(root, text='Exit', command=root.quit)
# 将 Button 添加到窗口
exit_button.pack()
root.mainloop()
```
在上面的示例代码中,我们创建了一个 `tk.Button` 对象,通过 `text` 参数设置该按钮显示的文本,通过 `command` 参数指定在用户点击该按钮时需要执行的函数,这里我们指定执行 `root.quit()` 函数来退出程序。最后,通过 `pack()` 方法将该按钮添加到窗口中。在运行程序时,用户可以点击该按钮退出程序。
阅读全文