CustomTkinter icon indicating copy to clipboard operation
CustomTkinter copied to clipboard

A modern and customizable python UI-library based on Tkinter

Results 574 CustomTkinter issues
Sort by recently updated
recently updated
newest added

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. ![image](https://user-images.githubusercontent.com/120323107/206912122-d9f658fb-f1ef-4c6e-9d99-d76bff97fd8b.png) 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 ![image](https://user-images.githubusercontent.com/69091177/206280242-1f942f7c-9ebd-4a74-aaa7-3748b4871785.png) Delete Button/s ![image](https://user-images.githubusercontent.com/69091177/206280945-7e5efba0-07b5-4b8b-a06c-2bc6323c2402.png) Insert button ![image](https://user-images.githubusercontent.com/69091177/206281095-aec4cffb-6022-4911-9c40-b24bedb9a4fa.png)

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)