CustomTkinter/test/manual_integration_tests/test_ctk_behavior/test_ctk_iconify_at_beginning.py

10 lines
134 B
Python

import customtkinter
app = customtkinter.CTk()
app.geometry("400x240")
app.iconify()
app.after(2000, app.deiconify)
app.mainloop()