Hello,
I am using customtkinter for a fullscreen application but I want the toolbox on right side. The solutions that have been found do fullscreen but doesn't include the tools on the right side.
Thank you for your help.
Currently,
The project provides the capability to set a corner radius for all sides of a widget,
but there is no way to specify different corner radii for individual sides ( e.g, only the top-left corner or only the bottom-right corner ) .
This limitation can be restrictive when we want more fin...
I'm coding an app with the package and when I want to start the script as an executable file (I use pyinstaller), I get this error:
*Traceback (most recent call last): File "main.py", line 1, in <module> File "<frozen importlib._bootstrap>", line 1027, in _find_and_load File "<frozen...
Is it possible to reset CtkScrollableFrame view to a top position, i have a setup where information is being injected in to a frame and if a button is selected that injects a new set of data and the scroll or view position is outside the new contents view nothing loads so you need to manually scroll...
Hi Tom, I'm experiencing alike issue right now, but the difference is that widget throwing exception error is CTkEntry. I'm doing dynamic UI and when trying to destroy widget, I want to empty out any text in textvariable stringVar stored, so I can reuse the same variable if widget is created again....
The Github docs states that CustomTkinter "can also be used in combination with normal Tkinter elements".
There is no clear documentation about hout to achieve this.
My use-case is that of a complex application with its own custom Tk App and a lot of plain tkinter UI.
I tryed to make my custom Tk Ap...
CTkLabel unable to change width it fixed to current text width
i tried more than method and still same bug
this code working fine but label width wont be change ever
Example:
import tkinter as tk
import customtkinter
def update_marquee():
global marquee_text
marquee_text = marquee_text[1:]...
This may be a user issue as I am new to tkinter, but I can't seem to set a frame size, it just shrinks to whatever is inside and ignores the height and width on the constructor when place() is used. I am stacking frames to make "pages", so I need to explicitly set the frame size. To make things more...