Multiple frames

How can i add multiple frames to a window and display different components in them.Each frame having its own GDI or sub widgets.And a timer controlling all the frames and their subwidgets

Hi,

···

On Sep 9, 11:15 am, nipun batra <nipunredde...@gmail.com> wrote:

How can i add multiple frames to a window and display different components
in them.Each frame having its own GDI or sub widgets.And a timer controlling
all the frames and their subwidgets

Download the wxPython Demo from Redirecting...

Then check out the AUI_MDI demo or the AUI demo under the Advanced
Generic Widgets section. I'm not sure what you mean by having a timer
control the widgets...that sounds rather odd.

-------------------
Mike Driscoll

Blog: http://blog.pythonlibrary.org

nipun batra wrote:

How can i add multiple frames to a window and display different components in them.Each frame having its own GDI or sub widgets.

Frames are top level windows and are not constrained to their parent window. You may be thinking of having multiple child windows within a frame, and that is entirely doable with a set of wx.Panels or any other child window types available. There are tons of examples of this in the demo and elsewhere.

···

--
Robin Dunn
Software Craftsman