How to determine when my window is minimized using wxPython?

I am writing a small wxPython utility.

I would like to use some kind of event to detect when the user minimizes the application / window.

I looked around, but did not find an event like wx.EVT_MINIMIZE, with which I could become attached.

Does anyone know a method that can be used to detect this?

+5
source share
1 answer

Add a handler for the wx.EVT_ICONIZE event .

+2
source

All Articles