我的消息框代码无法在我的窗口上运行其他一切正常,但是当我运行它时,“关于”消息框将不会显示

问题描述

我的消息框代码无法在我的窗口上运行。其他一切正常,但是当我运行它时,“关于”消息框将不会显示。我的消息框代码无法在我的窗口上运行。其他一切正常,但是当我运行它时,我的“关于”消息框将不会显示

from tkinter import*
from tkinter import messagebox
from PIL import ImageTk
class Login_system:
    
    def __init__(self,root):
        self.root=root
        self.root.title("Login System")
        self.root.geometry("1350x700+50+50")
        
        #---images---
        self.bg_icon=ImageTk.PhotoImage(file="bg.png")
        self.user_icon=PhotoImage(file="user.png")
        self.pass_icon=PhotoImage(file="pass.png")
        self.logo_icon=PhotoImage(file="login.png")

        #---variable---
        self.uname=StringVar()
        self.pass_=StringVar()

        bg_lbl=Label(self.root,image=self.bg_icon).pack()
        title=Label(self.root,text="loginSystem",font=("times new roman",40,"bold"),bg="blue",fg="white",bd=10,relief=GROOVE)
        title.place(x=0,y=0,relwidth=1)

        Login_Frame=Frame(self.root,bg="white")
        Login_Frame.place(x=450,y=150)

        logolbl=Label(Login_Frame,image=self.logo_icon).grid(row=0,columnspan=2,pady=20)

        lbluser=Label(Login_Frame,text="username",image=self.user_icon,compound=LEFT,20,bg="white").grid(row=1,column=0,padx=20,pady=10)
        txtuser=Entry(Login_Frame,bd=5,textvariable=self.uname,relief=GROOVE,font=("",15)).grid(row=1,column=1,padx=20)

        lblpass=Label(Login_Frame,text="password",image=self.pass_icon,bg="white").grid(row=2,pady=10)
        txtpass=Entry(Login_Frame,textvariable=self.pass_,15)).grid(row=2,padx=20)

        btn_log=Button(Login_Frame,text="Login",width=15,14,fg="white").grid(row=3,pady=10)
    
    def Login(self):
        if self.uname.get()=="" or self.pass_.get()=="":
            messagebox.showerror(title="Error",message="all field")
        elif self.uname.get()=="misha" or self.pass_.get()=="mmmm":
            messagebox.showinfo(title="successful",message= f"welcome{self.uname.get()}")
        else:
            messagebox.showerror(title="Error",message="all field rquire")
    
    
    
root=Tk()
obj=Login_system(root)
root.mainloop()

解决方法

您需要在按下Login按钮时调用login命令,这可以在初始化Button时传递command kwarg来完成。

选中btn_log=Button行以了解编辑内容

from tkinter import*
from tkinter import messagebox
from PIL import ImageTk
class Login_system:
    
    def __init__(self,root):
        self.root=root
        self.root.title("Login System")
        self.root.geometry("1350x700+50+50")
        
        #---images---
        self.bg_icon=ImageTk.PhotoImage(file="bg.png")
        self.user_icon=PhotoImage(file="user.png")
        self.pass_icon=PhotoImage(file="pass.png")
        self.logo_icon=PhotoImage(file="login.png")

        #---variable---
        self.uname=StringVar()
        self.pass_=StringVar()

        bg_lbl=Label(self.root,image=self.bg_icon).pack()
        title=Label(self.root,text="loginSystem",font=("times new roman",40,"bold"),bg="blue",fg="white",bd=10,relief=GROOVE)
        title.place(x=0,y=0,relwidth=1)

        Login_Frame=Frame(self.root,bg="white")
        Login_Frame.place(x=450,y=150)

        logolbl=Label(Login_Frame,image=self.logo_icon).grid(row=0,columnspan=2,pady=20)

        lbluser=Label(Login_Frame,text="username",image=self.user_icon,compound=LEFT,20,bg="white").grid(row=1,column=0,padx=20,pady=10)
        txtuser=Entry(Login_Frame,bd=5,textvariable=self.uname,relief=GROOVE,font=("",15)).grid(row=1,column=1,padx=20)

        lblpass=Label(Login_Frame,text="password",image=self.pass_icon,bg="white").grid(row=2,pady=10)
        txtpass=Entry(Login_Frame,textvariable=self.pass_,15)).grid(row=2,padx=20)

        btn_log=Button(Login_Frame,text="Login",width=15,14,command=self.Login).grid(row=3,pady=10)
    
    def Login(self):
        if self.uname.get()=="" or self.pass_.get()=="":
            messagebox.showerror(title="Error",message="all field")
        elif self.uname.get()=="misha" or self.pass_.get()=="mmmm":
            messagebox.showinfo(title="successful",message= f"welcome{self.uname.get()}")
        else:
            messagebox.showerror(title="Error",message="all field rquire")
    
    
    
root=Tk()
obj=Login_system(root)
root.mainloop()

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...