Commit 0b3c8d52 by BellCodeEditor

save project

parent e514fbd2
Showing with 14 additions and 0 deletions
...@@ -2,6 +2,20 @@ import tkinter ...@@ -2,6 +2,20 @@ import tkinter
rood = tkinter.Tk() rood = tkinter.Tk()
rood.title("注册") rood.title("注册")
rood.geometry("300x300+500+300") rood.geometry("300x300+500+300")
e=tkinter.Entry(rood,show=None,font=("宋体",14),bg="blue",width=18)
e.place(x=100,y=80)
e2=tkinter.Entry(rood,show="*",font=("宋体",14),bg="blue",width=18)
e2.place(x=100,y=120)
e3=tkinter.Entry(rood,show="*",font=("宋体",14),bg="blue",width=18)
e3.place(x=100,y=160)
e4=tkinter.Label(rood,text="请注册",font=("宋体",15),bg="blue",width=30,height=2)
e4.place(x=0,y=0)
e5=tkinter.Label(rood,text="账号",font=("宋体",15),fg="red")
e5.place(x=10,y=80)
e6=tkinter.Label(rood,text="密码",font=("宋体",15),fg="red")
e6.place(x=10,y=120)
e7=tkinter.Label(rood,text="确认密码",font=("宋体",15),fg="red")
e7.place(x=10,y=160)
rood.mainloop() rood.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