In tkinter, you can give widgets names with the name argument. I noticed that I cannot do that with CustomTkinter. I mainly use it to find the widgets again with nametowidget() and then change their text. I've changed my code to use StringVars instead which was, in hindsight, what I should have done in the first place. So my problem is fixed but I'd still need the name argument still if, for example, I want to pack_forget() a widget through nametowidget().
In tkinter, you can give widgets names with the
nameargument. I noticed that I cannot do that with CustomTkinter. I mainly use it to find the widgets again withnametowidget()and then change their text. I've changed my code to use StringVars instead which was, in hindsight, what I should have done in the first place. So my problem is fixed but I'd still need thenameargument still if, for example, I want topack_forget()a widget throughnametowidget().