写一个python界面设计代码
时间: 2023-06-04 19:06:31 浏览: 282
好的,这是一个技术问题,我可以回答。以下是一个简单的Python界面设计代码示例:
```python
import tkinter as tk
class Application(tk.Frame):
def __init__(self, master=None):
super().__init__(master)
self.master = master
self.pack()
self.create_widgets()
def create_widgets(self):
self.hi_there = tk.Button(self)
self.hi_there["text"] = "Hello World\n(click me)"
self.hi_there["command"] = self.say_hi
self.hi_there.pack(side="top")
self.quit = tk.Button(self, text="QUIT", fg="red",
command=self.master.destroy)
self.quit.pack(side="bottom")
def say_hi(self):
print("hi there, everyone!")
root = tk.Tk()
app = Application(master=root)
app.mainloop()
```
这段代码使用了Python自带的GUI库,Tkinter。它创建了一个应用程序窗口,并在窗口中添加了一个按钮和一个退出按钮。当用户单击按钮时,程序将在控制台中打印一条消息。
阅读全文