added scaling tracker

This commit is contained in:
Tom Schimansky
2022-04-19 00:01:33 +02:00
parent 5ede252b2f
commit 17d4b9fcba
17 changed files with 128 additions and 19 deletions

View File

@ -15,6 +15,8 @@ class ExampleApp(customtkinter.CTk):
window = customtkinter.CTkToplevel(self)
window.geometry("400x200")
print(window.master.winfo_class())
label = customtkinter.CTkLabel(window, text="CTkToplevel window")
label.pack(side="top", fill="both", expand=True, padx=40, pady=40)