Commit ec007940 by BellCodeEditor

save project

parent 34a7a688
Showing with 15 additions and 0 deletions
...@@ -2,4 +2,18 @@ import tkinter ...@@ -2,4 +2,18 @@ import tkinter
root=tkinter.Tk() root=tkinter.Tk()
root.title('登录康好康的') root.title('登录康好康的')
root.geometry('400x320') root.geometry('400x320')
l=tkinter.Label(root,text="好康的",font=('宋体',14),fg="black",width=18,bg="green")
l.place(x=120,y=0)
l2=tkinter.Entry(root,show=None,font=('宋体',14),bg="light grey",width=18)
l2.place(x=120,y=80)
l3=tkinter.Entry(root,show='*',font=('宋体',14),bg="light grey",width=18)
l3.place(x=120,y=120)
l4=tkinter.Entry(root,show="*",font=('宋体',14),bg="light grey",width=18)
l4.place(x=120,y=160)
l5=tkinter.Label(root,text="名字",font=('宋体',14),fg="black",width=18)
l5.place(x=60,y=80)
l6=tkinter.Label(root,text="密码",font=('宋体',14),fg="black",width=18,)
l6.place(x=60,y=120)
l7=tkinter.Label(root,text="再次输入",font=('宋体',14),fg="black",width=18,)
l7.place(x=60,y=160)
root.mainloop() root.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