Commit 2f224a95 by BellCodeEditor

save project

parent 2813f2f7
Showing with 2 additions and 2 deletions
...@@ -19,8 +19,8 @@ class My_login(): # 登录窗口 ...@@ -19,8 +19,8 @@ class My_login(): # 登录窗口
self.root.geometry('400x300+500+300') self.root.geometry('400x300+500+300')
self.root.resizable(width=False, height=False) # True可以拉伸,False不能拉伸 self.root.resizable(width=False, height=False) # True可以拉伸,False不能拉伸
def register(): # 登录界面的所有控件 def show(self): # 登录界面的所有控件
name,password1,password2== app_reg.get_input() # Label文本标签,界面提示信息
l = tkinter.Label(self.root, text='您好!请登录', bg='green', l = tkinter.Label(self.root, text='您好!请登录', bg='green',
font=('宋体', 15), width=40, height=2) font=('宋体', 15), width=40, height=2)
l.place(x=0, y=0) l.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