Answers for "tkinter make window invisible"

2

hide root window tkinter

root = tk.Tk()
# Hide it with .withdraw
root.withdraw()
# To reveal it again:
root.deiconify()
Posted by: Guest on March-13-2020

Code answers related to "tkinter make window invisible"

Python Answers by Framework

Browse Popular Code Answers by Language