python之tkinter使用举例-Button

时间:2023-09-20 15:38:08
tkinter用于编写GUI界面,python3默认已经包含,直接使用。
 # GUI:tkinter使用举例
import tkinter # 实例化tkinter对象
top = tkinter.Tk()
top.geometry('220x60') # 设置窗口大小
top.title('tkinter使用举例') # 设置窗口标题 # 新建Label控件对象,显示"Hello World"
label = tkinter.Label(top, text='Hello World')
# 加载Label控件
label.pack() # 新建Button控件
quit_btn = tkinter.Button(top, text='quit', command=top.quit, bg='red', fg='white')
# 设置按钮填充所有横向空间
quit_btn.pack(fill=tkinter.X, expand=1) # 循环运行
tkinter.mainloop()

截图:

python之tkinter使用举例-Button