Commit d1981c0a by BellCodeEditor

save project

parent bd56d887
Showing with 5 additions and 2 deletions
...@@ -48,7 +48,9 @@ class My_login(): # 登录窗口 ...@@ -48,7 +48,9 @@ class My_login(): # 登录窗口
self.root = tkinter.Tk() self.root = tkinter.Tk()
self.root.title("登录窗口") self.root.title("登录窗口")
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)
self.bg_img = tkinter.PhotoImage(file="bg.png")
self.box = PhotoImage(file='box.png') # True可以拉伸,False不能拉伸
def show(self): # 登录界面的所有控件 def show(self): # 登录界面的所有控件
# Label文本标签,界面提示信息 # Label文本标签,界面提示信息
...@@ -69,7 +71,8 @@ class My_login(): # 登录窗口 ...@@ -69,7 +71,8 @@ class My_login(): # 登录窗口
width=18) # 显示成密文形式 width=18) # 显示成密文形式
self.e1.place(x=120, y=80) self.e1.place(x=120, y=80)
self.e2.place(x=120, y=140) self.e2.place(x=120, y=140)
self.val = 0
self.v = IntVar()
# 登录、注册按钮 # 登录、注册按钮
button1 = tkinter.Button(self.root, text='登录', bg="lightblue", button1 = tkinter.Button(self.root, text='登录', bg="lightblue",
fg="black", width=15, command=login) fg="black", width=15, command=login)
......
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