Commit 7f8a4e71 by BellCodeEditor

save project

parent ccf05c39
Showing with 10 additions and 2 deletions
......@@ -2,4 +2,13 @@ import tkinter #导入tkinter摸块
ate=tkinter.Tk() #创建窗口对象
ate.title("注册") #设置窗口对象名字为“注册”
ate.geometry("400x380+500+100") #设置窗口对象的大小
ate.mainloop() #保存窗口对象(一直刷新)
\ No newline at end of file
e1=tkinter.Entry(ate,show=None,font=('宋体',14),bg="light grey",width=18)
e1.place(x=140,y=80)
e2=tkinter.Entry(ate,show='*',font=('宋体',14),bg="light grey",width=18)
e2.place(x=140,y=140)
e3=tkinter.Entry(ate,show='*',font=('宋体',14),bg="light grey",width=18)
e3.place(x=140,y=200)
lab = tkinter.Label(ate,text='您好!请填写注册信息',font=('宋体',15),fg="black",width=40,height=2,bg="green")
lab.place(x=0,y=0)
ate.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