I’ve several frames and miniframes and I would like to let each form
save and reload it’s own settings.So in the init of the (mini-) frame I bind a method to the destroy event
self.Bind ( wx.EVT_WINDOW_DESTROY, self.OnDestroyWindow )
I’ve never heard of that event, and don’t see it in the main docs-- what I use is the close event.
self.Bind(wx.EVT_CLOSE, self.OnClose)