admin 管理员组文章数量: 887032
2024年2月23日发(作者:怎么介绍编程)
用python写一个文本编辑器的代码
```
from tkinter import *
import sys
# Create window
window = Tk()
("Text editor")
ry("500x500")
# Create text box area
text_area = Text(window, font=("Arial", 12), height=200,
width=400)
text_()
# Create menubar
menu_bar = Menu(window)
# Create file menu
file_menu = Menu(menu_bar, tearoff=0)
# File command functions
def open_file():
file_name = nfilename(defaultextension=".txt",
filetypes=[("All Files", "*.*"),
("Text Documents", "*.txt")])
if file_name:
text_(1.0, END)
with open(file_name, "r") as file:
text_(1.0, ())
def save_file():
file_name =
easfilename(defaultextension=".txt",
filetypes=[("All Files", "*.*"),
("Text Documents", "*.txt")])
if file_name:
with open(file_name, "w") as file:
text_data = str(text_(1.0, END))
(text_data)
def quit():
()
()
# Add commands to file menu
file__command(label="Open", command=open_file)
file__command(label="Save", command=save_file)
file__command(label="Quit", command=quit)
# Add file menu to menubar
menu__cascade(label="File", menu=file_menu)
# Pack menubar and show window
(menu=menu_bar)
op()
```
版权声明:本文标题:用python写一个文本编辑器的代码 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1708684930h529339.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论