added checkmark to CTkCheckbox

This commit is contained in:
TomSchimansky
2022-03-09 14:49:44 +01:00
parent 2ab5b7e19f
commit 9acd0c42df
8 changed files with 61 additions and 15 deletions

View File

@ -4,7 +4,9 @@ import customtkinter
import sys
customtkinter.set_appearance_mode("System") # Modes: "System" (standard), "Dark", "Light"
customtkinter.set_default_color_theme("dark-blue") # Themes: "blue" (standard), "green", "dark-blue"
customtkinter.set_default_color_theme("blue") # Themes: "blue" (standard), "green", "dark-blue"
customtkinter.CTkSettings.preferred_drawing_method = "circle_shapes"
class App(customtkinter.CTk):