Commit 05dc45ed by BellCodeEditor

save project

parent 0789f835
Showing with 14 additions and 14 deletions
...@@ -3,23 +3,23 @@ root = tkinter.Tk() ...@@ -3,23 +3,23 @@ root = tkinter.Tk()
root.geometry("400x300+700+400") root.geometry("400x300+700+400")
root.title("注册") root.title("注册")
e1 = tkinter.Entry(root,show = None,font = ("宋体",30),bg = "light grey",width = 12) e1 = tkinter.Entry(root,show = None,font = ("宋体",30),bg = "light grey",width = 12)
e1. place(x = 70,y = 50) e1. place(x = 110,y = 80)
e2 = tkinter.Entry(root,show = None,font = ("宋体",30),bg = "light grey",width = 12) e2 = tkinter.Entry(root,show = None,font = ("宋体",30),bg = "light grey",width = 12)
e2. place(x = 70,y = 120) e2. place(x = 110,y = 130)
e3 = tkinter.Entry(root,show = None,font = ("宋体",30),bg = "light grey",width = 12) e3 = tkinter.Entry(root,show = None,font = ("宋体",30),bg = "light grey",width = 12)
e3. place(x = 70,y = 190) e3. place(x = 110,y = 180)
l1 = tkinter.Label(root,text="请输入注册信息",font = ("宋体,25"), l1 = tkinter.Label(root,text="请输入注册信息",font = ("宋体,25"),
fg = "black",bg="pink",width = 30,height = 3 ) fg = "black",bg="pink",width = 40,height = 3 )
l1.place(x=70,y=50) l1.place(x=20,y=10)
l1 = tkinter.Label(root,text="",font = ("宋体,25"), l1 = tkinter.Label(root,text="账号",font = ("宋体,25"),
width = 30,height = 3 ) width = 5,height = 3 )
l1.place(x=70,y=120) l1.place(x=30,y=80)
l1 = tkinter.Label(root,text="请输入注册信息",font = ("宋体,25"), l1 = tkinter.Label(root,text="密码",font = ("宋体,25"),
width = 30,height = 3 ) width = 5,height = 3 )
l1.place(x=70,y=190) l1.place(x=30,y=130)
l1 = tkinter.Label(root,text="确认密码",font = ("宋体,25"),
width = 8,height = 3 )
l1.place(x=30,y=180)
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