pack布局

#Pack布局.py
import tkinter                           #导入tkinter模块

root=tkinter.Tk()                        #创建window窗口对象

root.title ('Pack布局')                  #设置窗口标题

root.geometry('300x200+300+300')         #窗口的宽度和高度(x是小写的英文x,不是*)

root.config(bg='pink')

label=tkinter.Label(root,text='Hallo.myself')
label.pack()
button1=tkinter.Button(root,text='点我点我')
button1.pack(side=tkinter.LEFT)
button2=tkinter.Button(root,text='继续点我')
button2.pack(side=tkinter.RIGHT)

root.mainloop()                          #显示窗口(消息循环)

pack布局_第1张图片

 

你可能感兴趣的:(python)