CustomTkinter
CustomTkinter copied to clipboard
A modern and customizable python UI-library based on Tkinter
The image shows that CTkSwitch has a strange rounding, which I tried to fix by going through different parameters and sizes, but nothing helped. Also, if CTkButton is set to...
I am working within a legacy environment that is restricted to Python 3.6. When attempting to install or use CustomTkinter, it fails due to incompatibility with this Python version.I would...
Hi, I copied the default theme and change it except fonts section. I placed it in the project folder. Everything is fine but fonts. All texts in application rendered with...
How anti-aliasing normally works in OpenGL from OpenGL.GL import * from OpenGL.GLUT import * glutInit() glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH | GLUT_MULTISAMPLE) glEnable(GL_MULTISAMPLE) Why this breaks with pyopengltk / customtkinter...
When I run this code: ``` import customtkinter as ctk window=ctk.CTk() window.mainloop() window=ctk.CTk() window.mainloop() ``` In Idle there's no problem, but when I run it in Visual Studio Code or...
Hey experts, I'm having a weird issue with customtkinter, which happens when I import the package ``` Traceback (most recent call last): File "/Users/wbenzid/Projects/mwareeth/mwareeth.py", line 9, in from gui.app import...
**Description** In `CTkEntry.__init__`, a `trace_add` callback is attached to `self._textvariable`: ```python if not (self._textvariable is None or self._textvariable == ""): self._textvariable_callback_name = self._textvariable.trace_add("write", self._textvariable_callback) ``` However, in `CTkEntry.destroy()`, this trace...
The app works well on windows. But when i run in mac os the button clicks are only working by clicking the button and giving it a slight drag. Below...
Added yellow/golden/beer theme
When CTkTabview is created with an anchor that is _not_ `sw`, `s`, or `se`, it creates child frames that do not expand to fill the tab area. This can be...