Commit 6f8539fd by BellCodeEditor

save project

parent 6fe4c044
Showing with 19 additions and 1 deletions
import tkinter import tkinter
r = tkinter.Tk()
r.title('注册')
r.geometry('700x500+450+150')
e1 = tkinter.Entry(r,show='*',font=('宋体',14),bg='snow',width=40)
e1.place(x=200,y=100)
e2 = tkinter.Entry(r,show='*',font=('宋体',14),bg='snow',width=40)
e2.place(x=200,y=230)
e3 = tkinter.Entry(r,show='*',font=('宋体',14),bg='snow',width=40)
e3.place(x=200,y=360)
l = tkinter.Label(r,text='您好,请输入相关信息',font=('宋体',15),fg='snow',width=70,height=2,bg='lightcoral')
l.place(x=0,y=0)
l1 = tkinter.Label(r,text='用 户 名:',font=('宋体',12),fg='red')
l1.place(x=120,y=100)
l2 = tkinter.Label(r,text='密 码:',font=('宋体',12),fg='red')
l2.place(x=120,y=230)
l1 = tkinter.Label(r,text='确认密码:',font=('宋体',12),fg='red')
l1.place(x=120,y=360)
r.mainloop()
\ No newline at end of file
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