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

**Issue:** `CTkToplevel` overrides any custom changes to the titlebar icon. The problem lies in the following code within the `__init__` method of `ctk_toplevel.py` (lines 41-47): ```python try: # Set Windows...

we cannot use ListBox widget in CustomTkinter

Hello, I'm new to programming and github so excuse any omission or issue with this Issue. Let me know if uploading part of the code would help, I wasn't sure...

I'm developing an application where a I need an scrollable widget with horizontal and vertical scrolls This is the code I Had to add in /customtkinter/windows/widgets/ctk_scrollable_frame.py: diff --git a/customtkinter/windows/widgets/ctk_scrollable_frame.py b/customtkinter/windows/widgets/ctk_scrollable_frame.py...

(I hope i didn't overlook a matching thread on this topic, i would also like to point out that i am not nearly a professional on this whole topic) I...

```python def _center(self): self.update_idletasks() width = self.winfo_width() height = self.winfo_height() x = (self.winfo_screenwidth() // 2) - (width // 2) y = (self.winfo_screenheight() // 2) - (height // 2) self.geometry(f"{width}x{height}+{x}+{y}") ```...

Pull Request related to this issues: - https://github.com/TomSchimansky/CustomTkinter/issues/2596 - https://github.com/TomSchimansky/CustomTkinter/issues/1358 Rendering in Ubuntu Linux before the fix: ![Screenshot from 2024-11-24 18-34-36](https://github.com/user-attachments/assets/b5fb00a9-64e5-4a65-835d-173695c0ef8b) After the changes: ![Screenshot from 2024-11-24 19-56-10](https://github.com/user-attachments/assets/558be77e-7d60-402f-ba7d-22c5d82f0206)

its stuck an ugly white and its killing me i might be retarded and its an easy fix.

Steps: 1. Open a Toplevel from a Mainwindow 2. Destroy toplevel 3. Create new Toplevel 4. When calling customtkinter.CTkScrollableFrame(...) the execution stops for 4-15 seconds Does not happen if instead...

### CTkframe Stuttering @TomSchimansky When I'm scrolling up down **CTkframe** is **stuttering** also when I change the window from **full screen to small screen** or **small screen to full screen**...