arranging windows

Hello,

In my application I have multiple windows, Now I want to arrange theses
windows. I cannot use Notebook as I want to see all/some window side by
side.

Only option that I can think of is MDI. Any suggestion.

example code:

app = wx.App()
myFrame1 = myFrameClass1()
myFrame2 = myFrameClass2()
myFrame3 = myFrameClass3()
myFrame4 = myFrameClass4()
myFrame1.Show()
myFrame2.Show()
myFrame3.Show()
myFrame4.Show()
app.MainLoop()

···

--
View this message in context: http://wxpython-users.1045709.n5.nabble.com/arranging-windows-tp5722954.html
Sent from the wxPython-users mailing list archive at Nabble.com.