图示:
实现代码:
from tkinter import * root = Tk() root.title("pack布局的效果") root.geometry('800x200') Button(root,text='A').pack(side=LEFT,expand=YES,fill=Y) Button(root,text='B').pack(side=TOP,expand=YES,fill=BOTH) Button(root,text='C').pack(side=RIGHT,expand=YES,fill=NONE) Button(root,text='D').pack(side=LEFT,expand=NO,fill=Y) Button(root,text='E').pack(side=TOP,expand=YES,fill=BOTH) Button(root,text='G').pack(anchor=SE) root.mainloop()
pack的side有:注意是大写
left: 左;top: 上;right: 右;botton: 下
expand=YES或NO
expand:yes:扩展整个空白区或no:不扩展
fill:填充
l x:水平方向填充
l y:竖直方向填充
l both:水平和竖直方向填充
l none:不填充
就是这么的简单,小伙伴都是很容易理解的吧,关于布局的内容还有很多,之间给大家介绍过好几个,现在大家又多掌握了几个,那么如果大家需要用到布局,在套用的时候,可以进行最优选择了哦~