What is the correct way of closing all MDIChildFrames from
MDIParentFrame?Probably something like this:
for child in self.GetChildren():
if isinstance(child, wx.MDIChildFrame):
child.Close()
Yes, that worked perfectly, thanks robin!
What is the correct way of closing all MDIChildFrames from
MDIParentFrame?Probably something like this:
for child in self.GetChildren():
if isinstance(child, wx.MDIChildFrame):
child.Close()
Yes, that worked perfectly, thanks robin!