CustomTkinter
CustomTkinter copied to clipboard
A modern and customizable python UI-library based on Tkinter
Is there an option to disable this warning? Or warnings from CTk in general? "CTkLabel Warning: Given image is not CTkImage but . Image can not be scaled on HighDPI...
When i use `customtkinter.deactivate_automatic_dpi_awareness()` to deactvate the dpi scaling it's not working, but with `customtkinter.ScalingTracker.deactivate_automatic_dpi_awareness = True` it is.
When I try to dynamically assign on and off values to checkboxes it doesn't work except the last checkbox. ``` def check(self): print(self.get()) ``` ``` root = customtkinter.CTk() for i...
Integrated the JSON data of Built-in themes to theme_manager.py. Doing So, pyinstaller --onefile works for builtin themes and not using any special fonts. --Could be improved by adding a seperate...
I am using matplotlib figure to show equations. After closing the window, this error shows up and the program keeps running: ` invalid command name "2444841565824check_dpi_scaling" while executing "2444841565824check_dpi_scaling" ("after"...
I Upgraded from 4.6.3 to the newest Version an get the following Error: (I also tried Installing 5.0.0 to 5.0.3) PS H:\06 Coding\VsCodeProjekts\FiLoS\v2.2.1> & C:/Users/werner/AppData/Local/Programs/Python/Python311/python.exe "h:/06 Coding/VsCodeProjekts/FiLoS/v2.2.1/filos.py" Traceback (most recent...
Hi everyone, Merry Christmas! Big fan of CTK but it seems to me that you cannot name widgets using the 'name' keyword argument with CustomTkinter just like in Tkinter. This...
A small window pops up just before the main window is shown. I don't have this problem with regular Tkinter, so not sure what's causing it. I've tried with the...
\Python\Python310\lib\site-packages\customtkinter\windows\widgets\core_widget_classes\dropdown_menu.py", line 100, in _add_menu_commands self.add_command(label=value.ljust(self._min_character_width), AttributeError: 'int' object has no attribute 'ljust' values or variable doesnt support integers. You can get around it by making each int of the...
Hi, I want to add a normal image to my CustomTkinter window. I have looked at [CTk Image](https://github.com/TomSchimansky/CustomTkinter/wiki/CTkImage), but it places the image inside a button. Is there any way...