CustomTkinter
CustomTkinter copied to clipboard
cget command to get variable
cget doesn't work either.
Its not implemented... Maybe I will do it at some point
fine, I managed to get around it. thanks!
fine, I managed to get around it. thanks!
could you show me your solution?
could you show me your solution?
In my case, I just needed the text of a button, so I simply used: var = IntVar() btn = customtkinter.CTkButton(master, text='A', textvariable=var) text = btn.text variable = btn.textvariable
How to get CTkLabel text? .cget("text") is not working for CTkLabel
fine, I managed to get around it. thanks!
hello, i also need cget but it isn't working, can you tell me how you got around it?
cget is now implemented.