用tkinter制作菜单
时间: 2023-10-09 19:11:16 浏览: 57
tkinter教程
好的,下面是一个简单的例子,演示如何使用 Tkinter 制作菜单:
```python
import tkinter as tk
def new_file():
print("创建新文件")
def open_file():
print("打开文件")
def save_file():
print("保存文件")
root = tk.Tk()
# 创建菜单栏
menu_bar = tk.Menu(root)
root.config(menu=menu_bar)
# 创建“文件”菜单
file_menu = tk.Menu(menu_bar, tearoff=0)
file_menu.add_command(label="新建", command=new_file)
file_menu.add_command(label="打开", command=open_file)
file_menu.add_command(label="保存", command=save_file)
file_menu.add_separator()
file_menu.add_command(label="退出", command=root.quit)
menu_bar.add_cascade(label="文件", menu=file_menu)
root.mainloop()
```
在这个例子中,我们首先创建了一个菜单栏,并将它添加到窗口中。然后,我们创建了一个“文件”菜单,并将它添加到菜单栏中。我们使用 `tk.Menu` 创建
阅读全文