A modern and customizable python UI-library based on Tkinter
Go to file
demberto 77d00d65ce adopt https://github.com/github/gitignore/blob/main/Python.gitignore 2022-05-08 21:43:45 +05:30
customtkinter added iconify test 2022-05-06 14:33:38 +02:00
documentation_images changed Readme.md 2022-04-17 23:51:33 +02:00
examples fixed simple_example.py 2022-05-05 20:25:37 +02:00
test added iconify test 2022-05-06 14:33:38 +02:00
.editorconfig adopt editorconfig 2022-05-08 21:40:14 +05:30
.gitignore adopt https://github.com/github/gitignore/blob/main/Python.gitignore 2022-05-08 21:43:45 +05:30
.pre-commit-config.yaml adopt pre-commit 2022-05-08 21:41:58 +05:30
LICENSE.txt Rename LICENSE to LICENSE.txt 2021-03-13 19:50:48 +01:00
MANIFEST.in fixed MANIFEST.in 2022-03-05 13:34:34 +01:00
Readme.md changed Readme.md 2022-04-17 23:37:13 +02:00
project.toml minor changes for pypi 2021-05-08 12:03:43 +02:00
requirements.txt removed pyglet requirement 2022-04-06 00:31:35 +02:00
setup.py changed theme blue colors 2022-04-15 18:05:08 +02:00

Readme.md

PyPI PyPI - Downloads PyPI - License Total lines

CustomTkinter UI-Library

| complex_example.py on Windows 11 with dark mode and 'dark-blue' theme

| complex_example.py on macOS in light mode and standard 'blue' theme

CustomTkinter is a python UI-library based on Tkinter, which provides new, modern and fully customizable widgets. They are created and used like normal Tkinter widgets and can also be used in combination with normal Tkinter elements. The widgets and the window colors either adapt to the system appearance or the manually set mode ('light', 'dark'). With CustomTkinter you'll get a consistent and modern look across all desktop platforms (Windows, macOS, Linux).

Installation

Install the module with pip:

pip3 install customtkinter

Update existing installation: pip3 install customtkinter --upgrade
(update as often as possible because this library is under active development)

Documentation

A detailed documentation can be found in the Wiki Tab here: Documentation.

Example Program

To test customtkinter you can try this simple example with only a single button:

import tkinter
import customtkinter

customtkinter.set_appearance_mode("System")  # Modes: system (default), light, dark
customtkinter.set_default_color_theme("blue")  # Themes: blue (default), dark-blue, green

root_tk = customtkinter.CTk()  # create CTk window like you do with the Tk window
root_tk.geometry("400x240")

def button_function():
    print("button pressed")

# Use CTkButton instead of tkinter Button
button = customtkinter.CTkButton(master=root_tk, text="CTkButton", command=button_function)
button.place(relx=0.5, rely=0.5, anchor=tkinter.CENTER)

root_tk.mainloop()

which gives the following (macOS dark mode on):

In the examples folder, you can find more example programs and in the Documentation you can find further information on the appearance mode, the themes and all widgets.

More Examples and Showcase

Appearance mode change

On Windows 10/11 you get a dark window header, which changes with set appearance mode or the system, when you use customtkinter.CTk() to create the window, and it works with all python versions:

| complex_example.py on Windows 11 with system mode change and standard 'blue' theme

On macOS however you either need python3.10 or higher or the anaconda python version to get a dark window header at all (Tcl/Tk >= 8.6.9 required).

| complex_example.py on macOS with system mode change and standard 'blue' theme

Button with images

It's possible to put an image on a CTkButton. You just have to pass a PhotoImage object to the CTkButton with the image argument. If you want no text at all you have to set text="" or you specify how to position the text and image at once with the compound option:

| example_button_images.py on macOS

Integration of TkinterMapView widget

In the following example I used a TkinterMapView which integrates well with a CustomTkinter program. It's a tile based map widget which displays OpenStreetMap or other tile based maps:

| examples/map_with_customtkinter.py from TkinterMapView repository on macOS

You can find the TkinterMapView library and the example program here: https://github.com/TomSchimansky/TkinterMapView