GUI(Graphical User Interface / 图形用户界面) 是一类计算机程序的用户界面,可以让用户通过图形化的方式与程序进行交互。Python 提供了多个库和工具可以方便地创建 GUI,如 Tkinter、PyQt、wxPython 等。
Tkinter 是 Python 自带的 GUI 工具包。使用它可以快速方便地创建 GUI 界面。 Tkinter 中常用的两个组件是 Label(标签)和 Button(按钮)。
from tkinter import *
root = Tk()
root.title("Label 示例")
root.geometry("250x150")
label1 = Label(root, text="Hello, World!")
label1.pack()
root.mainloop()
以上代码就创建了一个简单的窗口,其中有一个 Label 组件,显示了 "Hello, World!" 。
除了上面的默认属性外,我们还可以自定义 Label 的文字、字体、颜色等属性:
from tkinter import *
root = Tk()
root.title("Label 属性示例")
root.geometry("250x150")
label1 = Label(root, text="Hello, World!", font=("Arial", 18), fg="red")
label1.pack()
root.mainloop()
以上代码将 Label 的字体设为 Arial,字号为 18,字体颜色为红色。
from tkinter import *
root = Tk()
root.title("Button 示例")
root.geometry("250x150")
def say_hello():
print("Hello, World!")
button1 = Button(root, text="Say Hello", command=say_hello)
button1.pack()
root.mainloop()
以上代码创建了一个按钮,点击按钮后会打印 "Hello, World!"。
我们也可以自定义 Button 的文字、颜色等样式:
from tkinter import *
root = Tk()
root.title("Button 属性示例")
root.geometry("250x150")
def say_hello():
print("Hello, World!")
button1 = Button(root, text="Say Hello", font=("Arial", 18), bg="red", fg="white", command=say_hello)
button1.pack()
root.mainloop()
以上代码将 Button 的字体、背景颜色、字体颜色都进行了自定义。
以上就是对 Python 中 GUI、Label、Button 的实例详解的演示。在实际工作中,我们可以结合在线文档和实现案例来更好地学习和理解使用。