CustomTkinter
CustomTkinter copied to clipboard
A modern and customizable python UI-library based on Tkinter
I'm trying to put an image on a label, and saw this warning: ``` CTkLabel Warning: Given image is not CTkImage but . Image can not be scaled on HighDPI...
Since 5.0.0 having more than one optional keyword isn't supported anmore: ``` ctk.CTkLabel(self, text="Label", font=("default_font", 10, "bold", "underline"), anchor='w', width=0) ``` this gives an error. There isn't any reason obvious...
The background on **readonly** ComboBoxes won't change off of white. Adding a readonlybackground argument would be helpful.  Highlighting the text: 
Hello After using customtkinter i have very strange problems with tkinter ending up in black screen on Mac M1. I tried to reproduce the problem it does not seem to...
I have seen in another issue that CTkCanvas was removed because the CTkCanvas is not intended to be publicly used, because there is no scaling. I understand that but isn't...
now the ctk logo is shown by default when creating a window  
Here is small GUI to show problem, or maybe I do it wrong: ``` python from functools import partial import customtkinter global show_switch global font_name def button_callback(app): print("Button click") cfg_edit...
Unlike tkinter, your library doesn't have it. It might be helpful in some projects.
Hello, I have an error when using tk.PhotoImage on Button. customtkinter version: 5.0.2 Example: ```python #!/usr/bin/python3 import tkinter as tk from customtkinter import (CTk, CTkButton, CTkFrame) class CtkButtonImageApp: def __init__(self,...
When I start my app, the placeholder text of some CTKEntry widgets are not visible.  If I then select one of those entry widgets (so it's focused) and then...