Commit 328b62c5 by BellCodeEditor

save project

parent 0cf77495
Showing with 15 additions and 0 deletions
...@@ -2,4 +2,19 @@ import tkinter ...@@ -2,4 +2,19 @@ import tkinter
rook = tkinter.Tk() rook = tkinter.Tk()
rook.title('注册') rook.title('注册')
rook.geometry('400x320+500+300') rook.geometry('400x320+500+300')
e1=tkinter.Entry(rook,show=None,font=('宋体',14),bg='light grey',width=18)
e1.place(x=140,y=80)
e2=tkinter.Entry(rook,show='*',font=('宋体',14),bg='light grey',width=18)
e2.place(x=140,y=140)
e3=tkinter.Entry(rook,show='*',font=('宋体',14),bg='light grey',width=18)
e3.place(x=140,y=200)
lab1=tkinter.Label(rook,text=('请输入用户名和密码'),font=('宋体',18),fg='black',bg='green',width=40,height=2)
lab1.place(x=-50,y=0)
lab2=tkinter.Label(rook,text=('用户名'),font=('宋体',12),fg='black',width=5)
lab2.place(x=80,y=80)
lab3=tkinter.Label(rook,text=('密码'),font=('宋体',12),fg='black',width=5)
lab3.place(x=80,y=140)
lab4=tkinter.Label(rook,text=('再次输入密码'),font=('宋体',12),fg='black',width=14)
lab4.place(x=10,y=200)
rook.mainloop() rook.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