Commit 7f81e768 by BellCodeEditor

save project

parent 95dad2f2
Showing with 40 additions and 0 deletions
import tkinter
root = tkinter.Tk()
root.geometry("400x320+500+300")
root.resizable(width=False,height=False)
root.title("91")
el=tkinter.Entry(root,show=None,font=("宋体",15),width=20)
el.place(x=140,y=80)
el=tkinter.Entry(root,show="*",font=("宋体",15),width=20)
el.place(x=140,y=120)
el=tkinter.Entry(root,show="*",font=("宋体",15),width=20)
el.place(x=140,y=160)
l1=tkinter.Label(root,text="请输入注册信息!",font=("宋体",15),
fg="black",width=40,height=2,bg="light blue")
l1.place(x=0,y=0)
l1=tkinter.Label(root,text="用户名",font=("宋体",15),
fg="black",width=6,height=2)
l1.place(x=50,y=70)
l1=tkinter.Label(root,text="账号",font=("宋体",15),
fg="black",width=4,height=2)
l1.place(x=70,y=110)
l1=tkinter.Label(root,text="密码",font=("宋体",15),
fg="black",width=4,height=2)
l1.place(x=70,y=150)
b=tkinter.Label(root,text="注册",font=("宋体",15),
fg="black",width=6,height=1,bg="yellow")
b.place(x=200,y=200)
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