place布局

#place布局.py
from tkinter import *
root=Tk()
root.title('登录')
root.geometry('400x200')
root.config(bg='#ffcc00')
label_1=Label(root,text='用户名',width=6)
entry_1=Entry(root,width=20)
label_2=Label(root,text='密码',width=6)
entry_2=Entry(root,width=20,show='*')
button_1=Button(root,text='登录',width=8)
button_2=Button(root,text='取消',width=8)

label_1.place(x=1,y=1)
entry_1.place(x=45,y=1)
label_2.place(x=1,y=20)
entry_2.place(x=45,y=20)
button_1.place(x=40,y=40)
button_2.place(x=110,y=40)

root.mainloop()place布局_第1张图片

 

你可能感兴趣的:(python)