Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

Administrator / level3-lesson17-diy3

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • level3-lesson17-diy3
  • 1.py
Find file
BlameHistoryPermalink
  • BellCodeEditor's avatar
    save project · c650e551
    BellCodeEditor committed 2 years ago
    c650e551
1.py 364 Bytes
Edit
1 2 3 4 5 6 7 8 9 10
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()