python gui界面实例
时间: 2023-06-28 09:15:17 浏览: 116
python界面例子
以下是一个简单的 Python GUI 界面实例,使用 tkinter 库:
```python
import tkinter as tk
class MyApplication(tk.Frame):
def __init__(self, master=None):
super().__init__(master)
self.master = master
self.pack()
self.create_widgets()
def create_widgets(self):
self.hello_label = tk.Label(self, text="Hello, world!")
self.hello_label.pack(side="top")
self.quit_button = tk.Button(self, text="Quit", command=self.master.destroy)
self.quit_button.pack(side="bottom")
root = tk.Tk()
app = MyApplication(master=root)
app.mainloop()
```
运行该程序将会生成一个带有 "Hello, world!" 标签和一个 "Quit" 按钮的窗口。
阅读全文