Commit aa9c5158 by BellCodeEditor

save project

parent 902160d4
Showing with 3 additions and 3 deletions
...@@ -28,11 +28,11 @@ lab.place(x=0,y=0) ...@@ -28,11 +28,11 @@ lab.place(x=0,y=0)
# 在输入框前展示文字标签:用户名:、密 码:、确认密码: # 在输入框前展示文字标签:用户名:、密 码:、确认密码:
lab1 = tkinter.Label(root, text='用户名:',fg="black",width=10, height=2) lab1 = tkinter.Label(root, text='用户名:',fg="black",width=10, height=2)
lab1.place(x=100,y=80) lab1.place(x=40,y=70)
lab2 = tkinter.Label(root, text='密码:',fg="black",width=10, height=2) lab2 = tkinter.Label(root, text='密码:',fg="black",width=10, height=2)
lab2.place(x=100,y=140) lab2.place(x=40,y=130)
lab3 = tkinter.Label(root, text='确认密码:',fg="black",width=10, height=2) lab3 = tkinter.Label(root, text='确认密码:',fg="black",width=10, height=2)
lab3.place(x=100,y=200) lab3.place(x=40,y=190)
bt=tkinter.Button(root,text='SB',font=('宋体',15),fg='black',command = reqister) bt=tkinter.Button(root,text='SB',font=('宋体',15),fg='black',command = reqister)
......
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