Commit a28ab05b by BellCodeEditor

auto save

parent 38cf257b
Showing with 3 additions and 3 deletions
......@@ -6,11 +6,11 @@ root.title("注册") # 设置窗口标题
root.geometry("400x320+500+300") # 设置窗口大小
# 注册界面上的文字标签
a1 = tkinter.Entry(root,show=None,font=('宋体',14),bg="light grey",width=18)
a1.place(x=140,y=80) # 显示成明文形式
a1.place(x=130,y=80) # 显示成明文形式
a2 = tkinter.Entry(root,show="*",font=('宋体',14),bg="light grey",width=18)
a2.place(x=140, y=140)
a2.place(x=130, y=140)
a3 = tkinter.Entry(root,show="*",font=('宋体',14),bg="light grey",width=18)
a3.place(x=140, y=200)
a3.place(x=130, y=200)
lab = tkinter.Label(root, text='您好!请填写注册信息', font=('宋体', 15),
fg="black",width=40, height=2,bg="green")
lab.place(x=0,y=0)
......
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