Commit 648db784 by BellCodeEditor

save project

parent 0651e310
Showing with 19 additions and 0 deletions
import tkinter import tkinter
root=tkinker.Tk()
root.title("注册")
root.geometry("600x800+500+300")
e1=tkinter.Entry(root,show=None,font=("宋体",14),bg="light grey",width=18)
e1.place(x=50,y=50)
e2=tkinter.Entry(root,show="*",font=("宋体",14),width=18)
e2.place(x=50,y=100)
e3=tkinter.Entry(root,show="*",font=("宋体",14),width=18)
e3.place(x=50,y=150)
l1=root.Label(root,text="请输入注册信息",font=("宋体",20),fg="red",bg="green",width=16)
l1.place(x=0,y=0)
l2=root.Label(root,text="账号",font=("宋体",20),width=16)
l2.place(x=0,y=50)
l3=root.Label(root,text="密码",font=("宋体",20),width=16)
l3.place(x=0,y=100)
l4=root.Label(root,text="确认密码",font=("宋体",20),width=16)
l4.place(x=0,y=150)
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