I am trying create a new frame in wxPython that is a child of the main frame so that when the main frame is closed, the child frame will also be closed.
Here is a simpli
class AboutFrame(wx.Frame): title = "About this program" def __init__(self): wx.Frame.__init__(self, wx.GetApp().TopWindow, title=self.title)