CustomTkinter
CustomTkinter copied to clipboard
A modern and customizable python UI-library based on Tkinter
I have made collapsable frames in like this: ``` class CollapsFrame(customtkinter.CTkFrame): collapsed = False def __init__(self, *args, width: int = 100, height: int = 32, frameLable: any = "", initalCollapsed:...
Window changes size when dragged from over to monitor with different scaling one Windows 11, maybe also Windows 10. This only happens when window is hold by the mouse for...
The placeholdertext reappears but the user is able to edit it and entry.get() returns ""
Hello, Custom Tkinter is a brilliant library, but I have an issue with binding the left button of the mouse to a label. I want that when you click in...
This is excellent stuff here. I just have one question -- is there any (current or planned) support for auto-complete with Combobox-es, for instance? Tkinter doesn't support this natively, I...
I am using tkinter to create multiple tools while employing tkinter listbox quite a lot! Just curious about if there's a way to create listboxes with CustomTkinter? If not, will...
When I use my application in a monitor bigger than the one my laptop has, the widgets size just goes nuts. Is there any way I can "fixate" the size...
Last updated: 26.9.2022 #### Next widgets I will add: 1. CTkTextbox will be finished. 2. CTkScrollableTextbox will be added by using CTkScrollbar combined with CTkTextbox. 3. I will create a...
I am unable to scroll down using a CTKScrollBar. I could do the same easily using a TTK ScrollBar but it does not look good on the screen. Please try...
I'm trying to use `indicatoron` arg for RadioButton but I get this error : ``` File "e:\python\gui.py", line 24, in check_button = customtkinter.CTkRadioButton( File "C:\Users\Mohammad\AppData\Local\Programs\Python\Python310\lib\site-packages\customtkinter\widgets\ctk_radiobutton.py", line 36, in __init__ super().__init__(*args,...