Commit 78916bd5 by BellCodeEditor

save project

parent db66a386
Showing with 9 additions and 0 deletions
import tkinter
def register():
name=el.get()
password1=e2.get()
password2=e3.get()
print("用户输入了",name,password1,password2)
root=tkinter.Tk()#创建窗口
root.title('注册')#设置标题
root.geometry("400x320+500+300")#设置大小,固定位置
root.resizable(width=False,height=False)
#用户名输入框,(窗口,显示的是,字体.大小,背景颜色,)
e1=tkinter.Entry(root,show=None,font=("宋体",14),bg="light grey",width=18)
......
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