How to open a minimized wxPython window

I have a utility where I want it to appear at the front of the screen from time to time to request user input.

(I know this is very annoying to general behavior, but I have good reasons in this case.)

I found the RequestUserAttention method, which can be used for a more pleasant request for input from the user, but in my case I just want it to pop up.

Perhaps even modal on top of all other windows.

Here's the XP platform, if that matters.

+4
source share
1 answer

You really have to think about your reasons again, but anyway:

frame.Show() frame.Raise() frame.Iconize(False) 

should raise the frame.

+5
source

All Articles