CustomTkinter
CustomTkinter copied to clipboard
A modern and customizable python UI-library based on Tkinter
CustomTkinter 4.6.3 Adding this third line, to simple_example.py, causes the exception: ``` checkbox_1 = customtkinter.CTkCheckBox(master=frame_1) checkbox_1.pack(pady=12, padx=10) checkbox_1.configure(corner_radius=0) ``` Exception raised: ``` File "/home/clive/PycharmProjects/customtk/simple_example.py", line 56, in checkbox_1.configure(corner_radius=0) File "/home/clive/PycharmProjects/customtk/venv/lib/python3.8/site-packages/customtkinter/widgets/ctk_checkbox.py",...
CustomTkinter 4.6.3 Adding this third line, to simple_example.py, causes the exception: ``` progressbar_1 = customtkinter.CTkProgressBar(master=frame_1) progressbar_1.pack(pady=12, padx=10) progressbar_1.configure(corner_radius=0) ``` Exception raised: ``` File "/home/clive/PycharmProjects/customtk/simple_example.py", line 37, in progressbar_1.configure(corner_radius=0) File "/home/clive/PycharmProjects/customtk/venv/lib/python3.8/site-packages/customtkinter/widgets/ctk_progressbar.py",...
The cursor will not follow the cursor specified when hovered over a button with a function attached to it. Lets assume we have a simple piece of code: ```python from...
Python 3.10 Windows 11 When i init a CtkFrame like this: ``` def __init__(self, parent, data): super().__init__(parent) ``` i always get `_tkinter.TclError: bad screen distance "200.0" ` The error is...
My aplication has a button that triggers a timeconsuming interaction with some hardware. During that time the ui is unresponsive whitch is fine but I want to give the user...
```customtkinter.CTkLabel(master=boxframe,image=ImageTk.PhotoImage(Image.open("LogoText.png"))).pack(padx=0, pady=10)``` The Image is invisible, but the label is there. Where my image should be is a gap with the size of my image. I also don't get an...
Hello @TomSchimansky, **I am making a widget maker for customtkinter which look like this** https://user-images.githubusercontent.com/89206401/197396161-26f89c59-d326-4ca7-b572-2cb2834b6870.mp4 I made the same for all the other widgets but some widgets like CTkSwitch are...
CTkComboBox.configure() does not appear to support the border_color property as per the wiki specs. CustomTkinter version: 4.6.3 Please see below: ``` File "ctk_theme_builder.py", line 2366, in _exec_client_command self.exec_colour_command() File "ctk_theme_builder.py",...
CtkButton.configure() does not appear to support the text_color_disabled property as per the wiki specs. CustomTkinter version: 4.6.3 Please see below: ``` File "ctk_theme_builder.py", line 2595, in _update_button_colour button.configure(text_color_disabled=widget_colour) File "/home/clive/PycharmProjects/ctk_theme_builder/venv/lib/python3.8/site-packages/customtkinter/widgets/ctk_button.py",...
Could you add passing of the `anchor` argument into the CTkOptionMenu() and CTkComboBox() or any text containing widget so one can chose the justification