python的gui界面的编写
时间: 2023-09-07 16:14:28 浏览: 81
Python有多种GUI编程库,如Tkinter、PyQt、wxPython等。其中,Tkinter是Python自带的GUI库,也是比较常用的一个。
下面是一个简单的Tkinter应用程序示例:
```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()
```
这个应用程序包含一个Hello World按钮和一个Quit按钮。当点击Hello World按钮时,会在控制台输出“hi there, everyone!”。当点击Quit按钮时,程序将会退出。
你可以根据需要对这个程序进行修改和扩展,例如添加新的控件、更改控件的样式和布局等。
阅读全文