Commit 8f5f80f7 by BellCodeEditor

save project

parent 332e7947
Showing with 26 additions and 0 deletions
......@@ -3,4 +3,29 @@ import tkinter
a=tkinter.Tk()
a.title("注册")
a.geometry("400x320+500+300")
b=tkinter.Entry(a,show=None,font=("宋体",14),bg="light grey",width=18)
b.place(x=140,y=80)
c=tkinter.Entry(a,show=None,font=("宋体",14),bg="light grey",width=18)
c.place(x=140,y=160)
d=tkinter.Entry(a,show=None,font=("宋体",14),bg="light grey",width=18)
d.place(x=140,y=240)
e=tkinter.Label(a,text="请输入账号密码",font=("宋体",30),bg="green",width=20)
e.place(x=0,y=0)
f=tkinter.Label(a,text="用户名",font=("宋体",18),bg="green",width=10)
f.place(x=-10,y=80)
g=tkinter.Label(a,text="密码",font=("宋体",18),bg="green",width=10)
g.place(x=-10,y=160)
h=tkinter.Label(a,text="确定密码",font=("宋体",18),bg="green",width=10)
h.place(x=-10,y=240)
a.mainloop()
\ No newline at end of file
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