CustomTkinter
CustomTkinter copied to clipboard
A modern and customizable python UI-library based on Tkinter
Unlike tk.Entry CTkEntry does not let me change the color when the entry is disabled. (There is no difference betwen abled and disabled CTkEntry)
Hey, I'm facing an issue when using `CTkEntry`. ``` python3 size_limit = StringVar() size_limit.trace_add("write", size_limit_modified) size_limit_entry = customtkinter.CTkEntry(master=split_tab, width=200, textvariable=size_limit, validate="key", placeholder_text="1GB = 1000MB = 1000000000B") size_limit_entry.pack() ``` On this...
I need to check appearance_mode Whether the is modified. According to appearance_mode modification icon ```python def modify(mode): if mode == "Light": root.iconbitmap(light_icon) if mode == "dark": root.iconbitmap(dark_icon) appearance_mode_modify(modify) ```
If you say there is no intention to add support, is there a support server I can go to (and no, I'm not going to go get roasted in stack...
When calling `CTkButton.bind()` on a button with no text string or an empty text string you will get a `TypeError: 'NoneType' does not object has no attribute 'bind'`. This is...
Fixed a bug happens when you try to assign an image to CTkButton without a text. (You get an error "AttributeError: 'NoneType' object has no attribute 'bind'")
Hello, I have compilated a projet with pyinstaler, but when I launch my file (note that customtkinter is installed), I have `KeyError : 'text'` and I don't understand the meaning...
Hi there CT offers extremely clean UI, good job! I would kindly like to make a request to add support for drag and drop of external files in the UI,...
From progress bar wiki: `ctk_progressbar.configure(fg_color=..., progress_color=..., number_of_steps=None, ...)` When trying to implement, encountering this error: \site-packages\customtkinter\windows\widgets\utility\utility_functions.py", line 18, in check_kwargs_empty raise ValueError(f"{list(kwargs_dict.keys())} are not supported arguments. Look at the documentation...