Answers for "how does tkinter iconify() function work in python"

0

how does tkinter iconify() function work in python

iconify() Turns the window into an icon (without destroying it). 
To redraw the window, use deiconify. 
Under Windows, the window will show up in the taskbar. 
When the window has been iconified, the state method returns “iconic”.

withdraw() Removes the window from the screen (without destroying it). 
To redraw the window, use deiconify.
When the window has been withdrawn, the state method returns “withdrawn”.
Posted by: Guest on January-03-2021

Code answers related to "how does tkinter iconify() function work in python"

Python Answers by Framework

Browse Popular Code Answers by Language