我試圖創建一個基本的密碼存儲方案時遇到的稱號類型錯誤:framechange()失蹤1個人需要的位置參數:「得到」
class StartPage(tk.Frame):
entry = "password"
def framechange(self, get):
if self.entry.get() == "password":
controller.show_frame("PageOne")
def __init__(self, parent, controller):
tk.Frame.__init__(self, parent)
self.controller = controller
label = tk.Label(self, text="Welcome", font=TITLE_FONT)
label.pack(side="top", fill="x", pady=10)
self.entry = tk.Entry(self)
self.entry.pack(side="top", fill="x", pady=10, padx=10)
button1 = tk.Button(self, text="Login",command = self.framechange)
button1.pack()
錯誤代碼麻煩任何幫助將是很好,謝謝
你'framechange'需要的參數'GET',但它沒有被通過,當你把它的'Button'的命令。儘管它似乎並不需要這個參數? – SuperBiasedMan