CustomTkinter
CustomTkinter copied to clipboard
A modern and customizable python UI-library based on Tkinter
['scrollbar_hover_color'] are not supported arguments. Look at the documentation for supported arguments. not able to set scrollbar colour or scrollbar hover colour also CTk Scroll bar cannot be used without...
Fixed the bug to distinguish whether Ok or Cancel was clicked
I have tried using canvas and it kind of worked but the canvas itself is white and has no round corners and the frame containing all of the widgets to...
There should be an option for the vertical orientation of segmented buttons and possibly for others. There also should be an image option. As I had to make an app...
CTkImage on setting inside a label throws (_tkinter.TclError: image "pyimage4" doesn't exist) error
I am working on pycharm so the error is not Spyder specific as some were saying on stackoverflow. i tries runnign the program on the global system terminal still the...
Is there a way to create table without using tree-view or anything likes that?
Examples App that demonstrate how to save settings from [customtkinter](https://github.com/TomSchimansky/CustomTkinter). Save and load default settings, or save and load settings as seperate files. https://github.com/corgan2222/Python_GUI_Examples
Hi ! I rescently use ctk to create an app, and i creating it in an HD screen (1920*1080). I fact, transfer my app in a new computer (a windows...
It would be useful to be able disable/enable state tab(s) of CTkTabview: ```python import tkinter as tk import customtkinter tabview = customtkinter.CTkTabview(master=master, state=tk.ACTIVE) tabview.grid(column=0, row=0) tabview.add('Tab1') tabview.add('Tab2') tabview.tab("Tab2").configure(state=tk.DISABLED) ``` Result:...
With reference to issue number #836 , I tried to customise the same CTkInputDialog like this ``` password_entry_font = ctk.CTkFont(family="Helvetica", size=16) self.confirm_dialog = ctk.CTkInputDialog(text="Please Enter your password. It won't be...