CustomTkinter
CustomTkinter copied to clipboard
A modern and customizable python UI-library based on Tkinter
Discord
is there a discord server for the project?
Hi. I updated to the latest version of customtkinter and when I try to use the set_widget_scaling or set_spacing_scaling it gives me this error.  is there any fix to...
fixed the display of text on the opposite (when importing a custom theme) button module. That is, when you hover over the button, if the colors are bright, then the...
I getting this error message when I try to delete buttons from the frame Error message  Delete Button/s  Insert button 
Hi the following code fails **(which works for regular Tkinter**), code changes the default icon displayed for running app PLS ADVISE: logo = tkinter.PhotoImage(file='LOGO.png') root_window.call('wm', 'iconphoto', root_window._w, logo) ``` root_window.call('wm',...
Hey there I followed the instructions on the packaging page, and the file packages correctly, however when I try to run the EXE the following error is generated: Traceback (most...
when I create a treeview in ctk.CTkframe, my root backgtound color didn't perform, and same problem on my btn text: > self.verifytv=ctk.CTkFrame( self.master, fg_color="#FFDCB9", bg_color="#FFEEDD", width=250,height=380 ) self.verifytv.place(relx=0.49,rely=0.12,anchor=tk.N) self.tv1 =...
To avoid warnings of deprecated packages. Please replace the line: `from distutils.version import StrictVersion as Version` with: `from pkg_resources import parse_version as Version` you can find this line in :...
I'm using CtkTextbox widget as a log window where I'm constantly inserting new lines (less than 10 lines per second). CPU usage grows constantly over time until the application becomes...
Can I somwhow use `customtkinter.set_default_color_theme` without restarting my application? (For example changing appearance mode without restart works perfect, changing theme requires me to restart my application)