fixed withdraw and iconify functionality for CTk window before mainloop or update #277 #305 #302

This commit is contained in:
TomSchimansky
2022-08-16 18:14:30 +02:00
parent 8c9183006c
commit 2db46afaf0
4 changed files with 31 additions and 11 deletions

View File

@ -12,7 +12,7 @@ class App(customtkinter.CTk):
super().__init__()
self.title("CustomTkinter complex_example.py")
self.geometry(f"{920}x{500}-100-100")
self.geometry(f"{920}x{500}")
self.protocol("WM_DELETE_WINDOW", self.on_closing) # call .on_closing() when app gets closed
# configure grid layout (4x4)
@ -73,6 +73,7 @@ class App(customtkinter.CTk):
dynamic_resizing=False,
values=["Value 1", "Value 2", "Value Long Long Long"])
self.optionmenu_1.grid(row=0, column=0, padx=20, pady=(20, 10), sticky="ew")
self.optionmenu_1.configure(dropdown_text_font=("Times New Roman", 20))
self.combobox_1 = customtkinter.CTkComboBox(self.optionemnu_combobox_frame,
values=["Value 1", "Value 2", "Value Long....."])
self.combobox_1.grid(row=1, column=0, padx=20, pady=(10, 10), sticky="ew")

View File

@ -3,16 +3,20 @@ import customtkinter
app = customtkinter.CTk()
app.geometry("400x240")
app.withdraw()
app.after(1000, app.deiconify)
def button_function():
top = customtkinter.CTkToplevel(app)
top.withdraw()
app.after(1000, top.iconify) # hide toplevel
app.after(1500, top.deiconify) # show toplevel
app.after(2500, app.iconify) # hide app
app.after(3000, app.deiconify) # show app
app.after(4000, app.destroy) # destroy everything
app.after(1000, top.deiconify) # show toplevel
app.after(2000, top.iconify) # hide toplevel
app.after(2500, top.deiconify) # show toplevel
app.after(3500, app.iconify) # hide app
app.after(4000, app.deiconify) # show app
app.after(5000, app.destroy) # destroy everything
button = customtkinter.CTkButton(app, command=button_function)