Skip to content Skip to sidebar Skip to footer

Help With Tkinter Alpha

I have a python program that has no windows frame and doesn't show up in the taskbar because of self.overrideredirect(1). This program has an options menu (a top level widget) that

Solution 1:

If you change the override redirect flag you need to withdraw and then deiconify the window to give the window manager a chance to make the change. You might try that.

Also, when you say "close out" the option menu top-level, what exactly do you mean? Are you sure destroying this second top-level window?

Post a Comment for "Help With Tkinter Alpha"