Clive Bostock
Clive Bostock
Trying to toggle between CTkTextbox being normal and disabled. CTkTextbox.config does not recognise the "state" argument: 
Issue: Cannot set state argument with CTkTextbox.config() / CTkTextbox.configure() There is currently no way to change the state of the widget. This change (lines 157-158) allows this via the textbox.configure...
Please see test case: https://github.com/TomSchimansky/CustomTkinter/discussions/302
Hello. I have added StringVar to CTkEntry widget, using the textvariable parameter. I am then binding the key release event to a function. The idea being that as the user...
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:...
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...
CustomTkinter 4.6.3 Adding this third line to simple_example.py: ``` button_1 = customtkinter.CTkButton(master=frame_1, command=button_callback, border_width=3, width=20, corner_radius=20) button_1.pack(pady=12, padx=10) button_1.configure(border_width=3) ``` Causes exception: ``` File "/home/clive/PycharmProjects/customtk/simple_example.py", line 30, in button_1.configure(border_width=3) File...
CustomTkinter 4.6.3 Adding this third line, to simple_example.py, causes the exception: ``` label_1 = customtkinter.CTkLabel(master=frame_1, justify=tkinter.LEFT) label_1.pack(pady=12, padx=10) label_1.configure(corner_radius=25) ``` Here is the stack: ``` File "/home/clive/PycharmProjects/customtk/simple_example.py", line 26, in...
CustomTkinter 4.6.3 This was reproduced with simple_example.py: ``` switch_1 = customtkinter.CTkSwitch(master=frame_1) switch_1.pack(pady=12, padx=10) switch_1.configure(corner_radius=5) ``` Here is the error stack: ``` Traceback (most recent call last): File "/home/clive/PycharmProjects/customtk/simple_example.py", line 73,...
CustomTkinter 4.6.3 These were reproduced with simple_example.py: ``` radiobutton_1 = customtkinter.CTkRadioButton(master=frame_1, variable=radiobutton_var, value=1) radiobutton_1.configure(border_color='yellow') radiobutton_1.pack(pady=12, padx=10) radiobutton_1.configure(corner_radius=5) ``` ``` radiobutton_1 = customtkinter.CTkRadioButton(master=frame_1, variable=radiobutton_var, value=1) radiobutton_1.configure(border_color='yellow') radiobutton_1.pack(pady=12, padx=10) radiobutton_1.configure(border_width_checked=5) ``` ```...