When i was trying to event bind inside my class, binding event creates argument error. Codes are written below-
class Login_App(tk.Tk):
def __init__(self):
super().__init__()
self.btn_lgin = ttk.Button(self, text="Login")
self.btn_lgin.grid()
self.btn_lgin.bind('<Return>', lambda: Login(self=self))
def Login(self):
'''I need "Self" in some codes, cant remove it'''
print("Clicked")
if __name__ == "__main__":
app = Login_App()
app.mainloop()
You should only do a minor change:
When calling a function with a parameter
self
inside aclass
self is not an actual parameter so you don't need to pass it as one.What you should do is:
Be aware that when you change this you should also change:
lambda:
tolambda x:
becauselambda:
gets one positional argument when you've passed zero, leading toTypeError