1.py
364 Bytes
w=tkinter.Tk()
w.title("注册")
w.geometry("600x500+400+200")
e=tkinter.Entry(w,show=None,font=('楷体',14),bg='light grey',width=28)
e.place(x=200,y=180)
r=tkinter.Entry(w,show='1',font=('楷体',14),bg='light grey',width=28)
r.place(x=200,y=220)
t=tkinter.Entry(w,show='3',font=('楷体',14),bg='light grey',width=28)
t.place(x=200,y=260)
w.mainloop()