Hello, how can i automatically display MDI child windows side by side everytime i add a new one?
I appreciate the attention
Hello, how can i automatically display MDI child windows side by side everytime i add a new one?
I appreciate the attention
http://wxpython.org/Phoenix/docs/html/MDIParentFrame.html
In the wxPython Demo -
- Section Frames and Dialogs
- Demo MDIWindows
- right Demo pane you will see MDIDemo
which runs the MDIDemo.py found in the wxPython demo package.
in MDIDemo.py
in class MyParentFrame(wx.MDIParentFrame):
add to end of method def OnNewWindow(self, evt):
self.Tile(wx.HORIZONTAL)
Untested, should work.