1、定义class类,继承Frame
2、在类里面使用init
3、建立一个createWidget
4、然后在Widget里面创建button\label
5、在button里面建立绑定事件;
6、还定义事件;
7、Label,可以显示普通文字
8、Label,也可以显示图片,目前据说Tk只支持gif格式,我早上使用了jpg还会报错。
9、root.destroy,知道消毁程序;
from tkinter import *
from tkinter import messagebox
class Application(Frame):
"""一个经典的GUI程序类的写法"""
def __init__(self,master=None):
super().__init__(master) # super()代表的是父类的定义 ,而不是父类的对像
self.master = master
self.pack()
self.createWidget()
def createWidget(self):
#显示图像
global photo #定义为全局变量
photo = PhotoImage(file="img/aa.gif")
self.label03 =Label(self,image=photo)
self.label03.pack()
self.label01 = Label(self)
self.label01 = Label(self,text="抗战疫情",width=20,height=2,bg="black",fg="white")
self.label01.pack()
"""创建组件"""
self.btn01 = Button(self,text="点击送花")
self.btn01["command"] = self.songhua
self.btn01.pack()
self.btnQuit=Button(self,text="退出",command=root.destroy)
self.btnQuit.pack()
def songhua(self):
messagebox.showinfo("送花","送你99朵花")
if __name__=='__main__':
root = Tk()
root.geometry("400x400+200+300")
root.title("一个经典的GUI程序类测试")
app = Application(master=root)
root.mainloop()