CustomTkinter/test/manual_integration_tests/test_ctk_behavior/test_ctk_withdraw_at_beginning.py

10 lines
135 B
Python

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