Commit d28ed4a8 by BellCodeEditor

auto save

parent 0651e310
Showing with 35 additions and 0 deletions
import tkinter
root = tkinter.Tk()
root.geometry("400x300+700+400")
root.title("注册")
e1 = tkinter.Entry(root,show = None,font = ("宋体",30),bg = "light grey",width = 12)
e1. place(x = 70,y = 50)
e2 = tkinter.Entry(root,show = None,font = ("宋体",30),bg = "light grey",width = 12)
e2. place(x = 70,y = 120)
e3 = tkinter.Entry(root,show = None,font = ("宋体",30),bg = "light grey",width = 12)
e3. place(x = 70,y = 190)
l1 = tkinter.Label(root,text="请输入注册信息",font = ("宋体,25"),
fg = "black",bg="pink",width = 30,height = 3 )
l1.place(x=70,y=50)
l1 = tkinter.Label(root,text="",font = ("宋体,25"),
width = 30,height = 3 )
l1.place(x=70,y=120)
l1 = tkinter.Label(root,text="请输入注册信息",font = ("宋体,25"),
width = 30,height = 3 )
l1.place(x=70,y=190)
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