added CTkCheckBox

This commit is contained in:
Tom Schimansky
2021-08-25 17:02:16 +02:00
parent ee5a19e55d
commit ccd1040329
12 changed files with 405 additions and 35 deletions

View File

@ -7,6 +7,7 @@ from .customtkinter_progressbar import CTkProgressBar
from .customtkinter_label import CTkLabel
from .customtkinter_entry import CTkEntry
from .customtkinter_dialog import CTkDialog
from .customtkinter_checkbox import CTkCheckBox
from .appearance_mode_tracker import AppearanceModeTracker, SystemAppearanceModeListenerNoThread
from .customtkinter_color_manager import CTkColorManager
@ -53,10 +54,6 @@ def get_appearance_mode():
return "Dark"
def set_theme(main_color):
CTkColorManager.set_theme(main_color)
def deactivate_threading():
AppearanceModeTracker.init_listener_function(no_thread=True)
sys.stderr.write("WARNING (customtkinter.deactivate_threading): Automatic threaded search for a change of the " +