tkinter 实现记事本
时间: 2023-07-13 18:30:03 浏览: 110
要使用 Tkinter 实现记事本,你需要以下步骤:
1. 导入 Tkinter 模块
```
import tkinter as tk
```
2. 创建主窗口
```
root = tk.Tk()
```
3. 添加文本框
```
text_box = tk.Text(root)
text_box.pack()
```
4. 添加菜单栏
```
menu_bar = tk.Menu(root)
file_menu = tk.Menu(menu_bar, tearoff=0)
file_menu.add_command(label="New")
file_menu.add_command(label="Open")
file_menu.add_command(label="Save")
file_menu.add_separator()
file_menu.add_command(label="Exit", command=root.quit)
menu_bar.add_cascade(label="File", menu=file_menu)
root.config(menu=menu_bar)
```
5. 运行主循环
```
root.mainloop()
```
完整代码如下:
```
import tkinter as tk
root = tk.Tk()
text_box = tk.Text(root)
text_box.pack()
menu_bar = tk.Menu(root)
file_menu = tk.Menu(menu_bar, tearoff=0)
file_menu.add_command(label="New")
file_menu.add_command(label="Open")
file_menu.add_command(label="Save")
file_menu.add_separator()
file_menu.add_command(label="Exit", command=root.quit)
menu_bar.add_cascade(label="File", menu=file_menu)
root.config(menu=menu_bar)
root.mainloop()
```
你可以根据自己的需求进行修改和完善。
阅读全文