0
TL.attributes('-toolwindow', True)

I'm making a GUI in Tkinter that uses a tool window, is there anyway to make this window show up in the task bar?

1 Answer 1

2

On most systems, you can temporarily remove the window from the screen by iconifying it. In Tk, whether or not a window is iconified is referred to as the window's state. The possible states for a window include "normal" and "iconic" (for an iconified window). There are some others too.

thestate = window.state()
window.state('normal')
window.iconify()
window.deiconify()

Docs at : http://effbot.org/tkinterbook/wm.htm should be of some help.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.