简体   繁体   English

Tkinter 用于检查条目的按钮

[英]Tkinter Button to check entries

i am trying to create a Button that checks information from entries.我正在尝试创建一个检查条目信息的按钮。 If the information is True the window should be cleared and display two new labels, else a new window should pop-up with an error message.如果信息为真,则应清除 window 并显示两个新标签,否则应弹出新的 window 并显示错误消息。 At the moment i cant figure out why the code ends up in the else block every single time, no matter what I type into the entries.目前我无法弄清楚为什么代码每次都在 else 块中结束,无论我在条目中输入什么。 Is someone able to explain why and how i could solve this problem?有人能够解释为什么以及如何解决这个问题吗? Maybe the "Entry.get()" method works different than i expected?..也许“Entry.get()”方法的工作方式与我预期的不同?...

from tkinter import *


class FirstPrototype:
    def __init__(self, top=None):
        self.top = top
        top.title("Prototype")
        top.configure(bg="black", highlightbackground="grey", highlightcolor="darkgrey")

        wWidth = top.winfo_reqwidth()
        wHeight = top.winfo_reqheight()

        x = int(top.winfo_screenwidth() / 2 - (wWidth / 2))
        y = int(top.winfo_screenheight() / 3 - (wHeight / 2))

        top.geometry(f"+{x}+{y}")
        top.minsize(300, 132)

        self.Account = Button(text="Account", command=self.log_reg).pack()

    def log_reg(self):
        self.clear_window()

        Label(text="ID:", bg="darkgrey").pack(fill=X)
        e1 = Entry()
        e1.pack(fill=X)
        Label(text="PW:", bg="darkgrey").pack(fill=X)
        e2 = Entry()
        e2.pack(fill=X)
        Button(text="Login", command=self.check_id).pack(fill=X)
        Button(text="Register").pack(fill=X)

        return e1, e2

    def clear_window(self):
        for widget in top.winfo_children():
            widget.destroy()

    def check_id(self):
        e1, e2 = self.log_reg()
        u_id = e1.get()
        u_pw = e2.get()

        if u_id == "Qwe123" and u_pw == "Qwe123":
            self.clear_window()

            Label(top, text="Nickname:", bg="darkgrey").pack(fill=X)
            Label(top,text="Examplenickname",bg="darkgrey").pack(fill=X)

        else:
            error_w = Tk()
            error_w.title("ERROR")
            Label(error_w, text="ERROR").place(relx=0.5, rely=0.5, anchor=CENTER)


top = Tk()
exa_gui = FirstPrototype(top)
top.mainloop()

For explanation refer my commentt有关解释,请参阅我的评论

Here:这里:

from tkinter import *


class FirstPrototype:
    def __init__(self, top=None):
        self.top = top
        top.title("Prototype")
        top.configure(bg="black", highlightbackground="grey", highlightcolor="darkgrey")

        wWidth = top.winfo_reqwidth()
        wHeight = top.winfo_reqheight()

        x = int(top.winfo_screenwidth() / 2 - (wWidth / 2))
        y = int(top.winfo_screenheight() / 3 - (wHeight / 2))

        top.geometry(f"+{x}+{y}")
        top.minsize(300, 132)

        self.Account = Button(text="Account", command=self.log_reg).pack()
        self.e1 = None
        self.e2 = None
        
    def log_reg(self):
        #self.clear_window()

        Label(text="ID:", bg="darkgrey").pack(fill=X)
        self.e1 = Entry()
        self.e1.pack(fill=X)
        Label(text="PW:", bg="darkgrey").pack(fill=X)
        self.e2 = Entry()
        self.e2.pack(fill=X)
        Button(text="Login", command=self.check_id).pack(fill=X)
        Button(text="Register").pack(fill=X)


    def clear_window(self):
        for widget in top.winfo_children():
            widget.destroy()

    def check_id(self):
        #e1, e2 = self.log_reg()
        u_id = self.e1.get()
        u_pw = self.e2.get()

        print(u_id)
        
        if u_id == "Qwe123" and u_pw == "Qwe123":
            self.clear_window()

            Label(top, text="Nickname:", bg="darkgrey").pack(fill=X)
            Label(top,text="Examplenickname",bg="darkgrey").pack(fill=X)

        else:
            error_w = Tk()
            error_w.title("ERROR")
            Label(error_w, text="ERROR").place(relx=0.5, rely=0.5, anchor=CENTER)


top = Tk()
exa_gui = FirstPrototype(top)
top.mainloop()

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM