CustomTkinter
CustomTkinter copied to clipboard
A modern and customizable python UI-library based on Tkinter
The CTk window appears on the taskbar even overredirect is True 
In the **tutorial** section of the **Wiki** at the "Multiple frames" examples, in the 3rd codeblock at line : `self.frame_2_button = customtkinter.CTkButton(self, text="Print value of frame 2", command=self.print_value_frame_1)` the `print_value_frame_1`...
Update: I forgot to mention that this does not happen, when a simple tkinter.Text wiget is used: ``` textbox = tkinter.Text(root, spacing1=0, spacing2=0, spacing3=5) ``` Try the example: Watch the...
is there a way to check if the progress bar is already running? i am using mode='indeterminate' so i cant get the current value to check if it is >...
close #875
Could a timer widget possible be added? It should support both counting up from zero and down from a certain time. Being able to adjust the format (HH:MM:SS; MM:SS; ...)...
I have made a application with custumtkinter python , when it changes a screen we can see how it is changes , like each frame comes and changes its position...
I just noticed that the wiki for this repo doesn't have info on CTkCanvas, even though CTkCanvas exists in the code.
**There is a mistake in the Documentation for CTkOptionMenu** `dropdown_color` is not a valid argument it should be changed to `dropdown_fg_color` EDIT: I Found out more about it! if you...