75 Tkinter GUI初体验
import tkinter as tk
class APP:
def __init__(self,master):
frame=tk.Frame(master)
frame.pack(side=tk.LEFT,padx=10,pady=10)
self.hi_there=tk.Button(frame,text='打招呼',fg='black',command=self.say_hi,bg='blue')
self.hi_there.pack()
def say_hi(self):
print('大家好')
root=tk.Tk()
app=APP(root)
root.mainloop()
76.lable和buttom组件
1)图文分离
from tkinter import *
root=Tk() #生成一个根窗口
textLabel=Label(root,text='我是一个皮卡丘,\n每天我都乐观开心',justify=LEFT,padx=10)#textLabel是一个Label对象
textLabel.pack(side=LEFT) #将label对象自动打包一下才能看到,放在根窗口的左边,并且设置文字左对齐,边距padx等于10
photo=PhotoImage(file='timg.gif')#phtot是一个PhotoInage对象
imageLabel=Label(root,image=photo)#image也是一个label对象
imageLabel.pack(side=RIGHT)#把miagelabel这个label打包放到根窗口右边
mainloop()
2)图文一体
from tkinter import *
root=Tk()
photo=PhotoImage(file='timg.gif')
theLabel=Label(root,text='haha',justify=LEFT,image=photo,compound=CENTER,fg='blue')
theLabel.pack()
mainloop()
3)按钮
from tkinter import *
def callback():
var.set('吹吧你就 我才不信')
root=Tk()
frame1=Frame(root)
frame2=Frame(root)
var=StringVar()
var.set('你真的是皮卡丘?')
textLabel=Label(frame1,textvariable=var,justify=LEFT)
textLabel.pack(side=LEFT)
photo=PhotoImage(file='timg.gif')
imageLabel=Label(frame1,image=photo)
imageLabel.pack(side=RIGHT)
theButton=Button(frame2,text='确定请进',command=callback)
theButton.pack()
frame1.pack(padx=10,pady=10)
frame2.pack(padx=10,pady=10)
mainloop()
解析如下:
定义函数callback,实现点击按钮时候触发
生成一个弹窗对象root root=Tk()
将弹窗对象划分为两部分:frame1=Frame(root) frame2=Frame(root)
定义一个字符串对象var var=StringVar()
利用var对象的set方法给var赋值,同时callback函数中也利用这个改变var,这个var会用来展示再文本区
定义第一个label对象用来展示文本,再frame1区域中:textLabel=label(frame1.textvariable=var,justify=LEFT)
定义第二个label对象用来展示图片,在frame1区域中 imageLabel=Label(frame1,image=photo)
定义一个图片对象photo
定义一个Button对象 theButton=Button(frame2,text='xxx',command=callback)
标签对象、区域对象都需要pack一下
4)checkbutton组件 多选框
测试一下:
from tkinter import *
root=Tk()#一个根弹窗对象
v=IntVar() #TK变量,用来表示按钮是否被选中
c=Checkbutton(root,text='ceshi',variable=v)#一个checkbutton对象,其中variable值等于v,用来表示按钮是否被按下
c.pack()
l=Label(root,textvariable=v)#label中text这个值如果是个变量则用textvariable
l.pack()
mainloop()
正式案例:
from tkinter import *
root=Tk()#一个根弹窗对象
GIRLS=['A','B','C','D']
v=[]
for girl in GIRLS:
v.append(IntVar())
b=Checkbutton(root,text=girl,variable=v[-1])
b.pack()
mainloop()
5)radiobutton组件 单选框
from tkinter import *
root=Tk()#一个根弹窗对象
v=IntVar()
Radiobutton(root,text='one',variable=v,value=1).pack() #当改按钮被点,则将value的值给v,variable的值与value对比,相同则被选中
Radiobutton(root,text='two',variable=v,value=2).pack()
Radiobutton(root,text='three',variable=v,value=3).pack()
mainloop()
优化如下:
from tkinter import *
root=Tk()#一个根弹窗对象
yuyan=[('a',1),('b',2),('c',3)]
v=IntVar()
v.set('1')
for yu,num in yuyan:
b=Radiobutton(root,text=yu,variable=v,value=num)
b.pack()
mainloop()
6)labelframe组件 标签框架 是frame对象的升级
from tkinter import *
root=Tk()#一个根弹窗对象
group=LabelFrame=(root,text='aha',padx=5,pady=5)
group.pack()
yuyan=[('a',1),('b',2),('c',3)]
v=IntVar()
for yu,num in yuyan:
b=Radiobutton(group,text=yu,variable=v,value=num)
b.pack()
mainloop()