Commit ca5656ed by BellCodeEditor

save project

parent 0651e310
Showing with 18 additions and 1 deletions
import tkinter
root=tkinter.Tk()
root.title("注册")
root.geometry('400x320+500+300')
e1=tkinter.Entry(root,show=None,font=('宋体',14),width=18,bg='white')
e1.place(x=140,y=80)
e2=tkinter.Entry(root,show='*',font=('宋体',14),width=18,bg='white')
e2.place(x=140,y=110)
e3=tkinter.Entry(root,show='*',font=('宋体',14),width=18,bg='white')
e3.place(x=140,y=140)
l1=tkinter.Label(root,text="请输入注册信息",font=('宋体',15),width=40,bg='lightgreen',height=2)
l1.place(x=0,y=0)
l2=tkinter.Label(root,text="账号:",font=('宋体',14),width=5)
l2.place(x=80,y=80)
l3=tkinter.Label(root,text="密码:",font=('宋体',14),width=5)
l3.place(x=80,y=110)
l3=tkinter.Label(root,text="确认密码:",font=('宋体',14),width=8)
l3.place(x=60,y=140)
tkinter.mainloop()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment