-
Hi. I have just, this week, learned tkinter and subsequently discovered customtkinter. I have developed my first application, which I am porting to customekinter. The posrted app now includes several new sliders (CTkSlider). Unlike the bog standard tkinter sliders, there is no value display. To compensate for this I was hoping to define a CTkLabel to the side of each slider. The problem i am having is finding a way to update the label text, when the slider is rmoved. Open to any suggestions on this one - maybe my approach is wrong? Thanks, Clive |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Just spotted that there is a method described at the bottom of the wiki - will give it a whirl! I used CTkLabel.configure(text=new_text) |
Beta Was this translation helpful? Give feedback.
Just spotted that there is a method described at the bottom of the wiki - will give it a whirl!
So the method is described on the wiki:
https://github.com/TomSchimansky/CustomTkinter/wiki/CTkLabel
I used CTkLabel.configure(text=new_text)