ADD file via upload

main
pcafzw7pf 6 months ago
parent 5be722ec35
commit 2c066e709d

@ -0,0 +1,24 @@
import tkinter as tk
def run():
# 创建新的tk界面
history_window = tk.Tk()
history_window.title("历史对话")
# 读取历史对话内容
dialogue_lines = []
with open("dialogue.txt", "r") as file:
dialogue_lines = file.readlines()
# 显示历史对话内容
message_history = tk.Text(history_window, width=60, height=20, wrap="word")
message_history.pack(pady=10)
for line in dialogue_lines:
message_history.insert(tk.END, line)
history_window.mainloop()
if __name__ == "__main__":
run()
Loading…
Cancel
Save