CustomTkinter icon indicating copy to clipboard operation
CustomTkinter copied to clipboard

cget command to get variable

Open luisotaviocintra opened this issue 2 years ago • 6 comments

cget doesn't work either.

luisotaviocintra avatar Aug 17 '22 12:08 luisotaviocintra

Its not implemented... Maybe I will do it at some point

TomSchimansky avatar Aug 17 '22 14:08 TomSchimansky

fine, I managed to get around it. thanks!

luisotaviocintra avatar Aug 17 '22 14:08 luisotaviocintra

fine, I managed to get around it. thanks!

could you show me your solution?

CarlosHGL avatar Aug 24 '22 06:08 CarlosHGL

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

luisotaviocintra avatar Aug 24 '22 12:08 luisotaviocintra

How to get CTkLabel text? .cget("text") is not working for CTkLabel

fathimaNasmin avatar Oct 15 '22 01:10 fathimaNasmin

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?

Nikushavar avatar Nov 28 '22 10:11 Nikushavar

cget is now implemented.

TomSchimansky avatar Dec 06 '22 22:12 TomSchimansky