added iconify test

This commit is contained in:
Tom Schimansky
2022-05-06 14:33:38 +02:00
parent 3eb0d411c5
commit 72823a41bc
7 changed files with 309 additions and 13 deletions

View File

@@ -2,8 +2,6 @@ import tkinter
import customtkinter # <- import the CustomTkinter module
customtkinter.ScalingTracker.set_window_scaling(1.5)
customtkinter.ScalingTracker.set_spacing_scaling(1.5)
customtkinter.ScalingTracker.set_widget_scaling(1.5)
customtkinter.set_appearance_mode("dark") # Modes: "System" (standard), "Dark", "Light"
customtkinter.set_default_color_theme("blue") # Themes: "blue" (standard), "green", "dark-blue"
@@ -19,6 +17,7 @@ def button_function():
def slider_function(value):
customtkinter.set_user_scaling(value * 2)
progressbar_1.set(value)