CustomTkinter icon indicating copy to clipboard operation
CustomTkinter copied to clipboard

A modern and customizable python UI-library based on Tkinter

Results 548 CustomTkinter issues
Sort by recently updated
recently updated
newest added

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. ![image](https://user-images.githubusercontent.com/56325821/205536868-16a0f836-1643-4ee3-aeb1-d2abdf7ef6d7.png) Highlighting the text: ![image](https://user-images.githubusercontent.com/56325821/205536914-f4974b6e-3560-480b-9515-9353df5b1238.png)

question

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...

question

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 ![img2](https://user-images.githubusercontent.com/86579760/205521360-1f892ec4-3eec-4338-92ae-aeb0d1d17abc.PNG) ![img1](https://user-images.githubusercontent.com/86579760/205521372-6cf88c4b-ab84-4817-b95d-c809d12bbfd6.PNG)

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,...

information

When I start my app, the placeholder text of some CTKEntry widgets are not visible. ![image](https://user-images.githubusercontent.com/41532982/205987582-5ad9f545-6b49-4eb7-aa50-638a7a103494.png) If I then select one of those entry widgets (so it's focused) and then...

question