About 42 results
Open links in new tab
  1. Official Documentation And Tutorial | CustomTkinter

    CustomTkinter is a python desktop UI-library based on Tkinter, which provides modern looking and fully customizable widgets. With CustomTkinter you'll get a consistent look across all desktop platforms …

  2. Documentation Introduction | CustomTkinter

    This is the official CustomTkinter documentation, where you can find detailed information about the widgets, windows, customization and scaling.

  3. CTk Widgets | CustomTkinter

    Documentation of arguments and methods of all widgets.

  4. Tutorial Introduction | CustomTkinter

    This is the official CustomTkinter tutorial section, where you can find some beginner and advanced tutorials highlighting the main features of the library. This tutorial section does not aim to provide a …

  5. Color and Themes | CustomTkinter

    customtkinter.set_default_color_theme("dark-blue") # Themes: "blue" (standard), "green", "dark-blue"

  6. 1. Grid System | CustomTkinter

    Get familiar with the basics of CustomTkinter by creating a window and placing a few widgets with the grid geometry manager.

  7. CTkLabel | CustomTkinter

    CTkLabel Example Code label = customtkinter.CTkLabel(app, text="CTkLabel", fg_color="transparent")

  8. 2. Using Frames | CustomTkinter

    self.button = customtkinter.CTkButton(self, text="my button", command=self.button_callback) self.button.grid(row=3, column=0, padx=10, pady=10, sticky="ew")

  9. CTkTextbox | CustomTkinter

    class App(customtkinter.CTk): def __init__(self): super().__init__() self.grid_rowconfigure(0, weight=1) # configure grid system self.grid_columnconfigure(0, weight=1) self.textbox = …

  10. Beginner | CustomTkinter

    Beginner tutorials for CustomTkinter on the grid system, how to use frames, and more.