以下是一个使用Tkinter进行简单封装的示例代码: ```python import tkinter as tk class Application(tk.Tk): def __init__(self): super().__init__() self.title("Hello Tkinter") self.geometry("200x100") self.label = tk.Label(self, text="Hello, Tkinter!") self.label.pack(pady=10) self.button = tk.Button(self, text="Click Me", command=self.button_clicked) self.button.pack(pady=5) def button_clicked(self): self.label.configure(text="Button Clicked!") if __name__ == "__main__": app = Application() app.mainloop() ``` 上述代码创建了一个继承自`tk.Tk`的`Application`类,包含一个标签和一个按钮。单击按钮将更新标签的文本为"Button Clicked!"。`if __name__ == "__main__":`部分用于确保脚本作为主程序运行时才执行创建应用程序实例和启动主循环的代码。 封装代码的方式可能因编程习惯和需求而异。上述示例代码仅作为一个简单的起点,你可以根据需要进行修改和扩展。 [2024-05-22 20:34:41 | AI写代码神器 | 651点数解答]