CustomTkinter
CustomTkinter copied to clipboard
A modern and customizable python UI-library based on Tkinter
Using pyinstaller or auto-py-to-exe after using customtkinter is not an easy task, I would stretch it as far as say impossible based on my knowledge. That said, I followed this...
Hello, checkbox_width & checkbox_height are not working. Is this a known issue or can it be fixed?
Mr. Tom, thank you so much for taking time out of your personal life building such an amazing product. We do appreciate you. I'm encountering some errors while implementing buttons,...
How can I change the background color of CTKEntry when state is 'readonly'? Thanks.
Hello, I did the update of ctktextbox but I still have an issue while I try to check if data in textbox, is it normal ? the below check does...
I cannot get button binding to work. I have the following 2 examples. One is using tkinter, the other uses customtkinter. The only difference is in the button widget: tkinter:...
Hi, after closing an app written with CustomTkinter, a vere easy app, there are sometimes dpi scaling error messages, though not always. Like these, from 2 different runs, so this...
Hello, I am wondering if it is possible to use CustomTkinter for single bundled .exe files? I have tried using the [instructions](https://github.com/TomSchimansky/CustomTkinter/wiki/Packaging) here, but I can't seem to find a...
For a button of default height (not tested against other heights), setting the corner radius to a value > 38 causes the button to length to increase. This causes the...
```` import customtkinter from tkinter import * def test(event): if root.focus_get() == custom_entry: print("custom_entry") elif root.focus_get() == ttk_entry: print("ttk_entry") root = customtkinter.CTk() custom_entry = customtkinter.CTkEntry(root) #CTkEntry custom_entry.pack() ttk_entry = Entry(root)...