tkinter界面设计
时间: 2023-09-14 14:06:34 浏览: 98
tkinter界面设计师
5星 · 资源好评率100%
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()
```
这个例子中,我们创建了一个名为 `Application` 的类,它继承了 `tk.Frame` 类。在 `__init__` 方法中,我们初始化了主界面,并调用了 `create_widgets` 方法来创建界面中的按钮。在 `create_widgets` 方法中,我们创建了两个按钮,一个用于打印一条问候语,另一个用于退出程序。
在主程序中,我们创建了一个 Tkinter 窗口,并将 `Application` 类作为其主界面。最后,我们调用 `mainloop` 方法来启动事件循环,使得窗口能够响应用户的交互。
阅读全文