Commit 344f6c47 by BellCodeEditor

save project

parent 0651e310
Showing with 26 additions and 0 deletions
import tkinter import tkinter
root = tkinter.Tk()
root.title("注册")
root.geometry("400x300+150+100")
e1 = tkinter.Entry(root,show=None,font=('等线',18),bg='white',width=18)
e1.place(x=130,y=60)
e2 = tkinter.Entry(root,show='*',font=('等线',18),bg='white',width=18)
e2.place(x=130,y=135)
e3 = tkinter.Entry(root,show='*',font=('等线',18),bg='white',width=18)
e3.place(x=130,y=185)
l1 = tkinter.Label(root,text='请输入注册信息',font=('等线',18),fg='white'
,bg='dark blue',width=31)
l1.place(x=0,y=0)
l2 = tkinter.Label(root,text='账户昵称',font=('等线',18),fg='dark blue'
,width=8)
l2.place(x=0,y=60)
l3 = tkinter.Label(root,text='设置密码',font=('等线',18),fg='dark blue'
,width=8)
l3.place(x=0,y=135)
l4 = tkinter.Label(root,text='确认密码',font=('等线',18),fg='dark blue'
,width=8)
l4.place(x=0,y=185)
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