Commit 9fd00288 by BellCodeEditor

save project

parent 1b2ceaf4
Showing with 7 additions and 1 deletions
...@@ -8,6 +8,12 @@ e2=tkinter.Entry(root,show="*",font=("宋体,14"),bg="light grey",width=18) ...@@ -8,6 +8,12 @@ e2=tkinter.Entry(root,show="*",font=("宋体,14"),bg="light grey",width=18)
e2.place(x=140,y=130) e2.place(x=140,y=130)
e3=tkinter.Entry(root,show="*",font=("宋体,14"),bg="light grey",width=18) e3=tkinter.Entry(root,show="*",font=("宋体,14"),bg="light grey",width=18)
e3.place(x=140,y=180) e3.place(x=140,y=180)
lab=tkinter.Label(root,text='您好!请填写注册信息',font=("宋体,18")) lab=tkinter.Label(root,text='您好!请填写注册信息',font=("宋体,18"),fg='red')
lab.place(x=15,y=10) lab.place(x=15,y=10)
lab1=tkinter.Label(root,text='用户名:',font=("宋体,18"),fg='black')
lab1.place(x=15,y=15)
lab2=tkinter.Label(root,text='密码:',font=("宋体,18"),fg='red')
lab2.place(x=15,y=20)
lab3=tkinter.Label(root,text='确认密码:',font=("宋体,18"),fg='red')
lab3.place(x=15,y=170)
root.mainloop() root.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