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()