↧
Answer by Mike Driscoll for How to control a frame from another frame?
I'd definitely use PubSub as it's probably the cleanest way I can think of to do it. You can also do it with wx.PostEvent or use a modal frame.
View ArticleAnswer by volting for How to control a frame from another frame?
Theres not much too it, you create an instance of your model class in your controller and call its methods. So for example when you click the models stop button its handler calls the appropriate method...
View ArticleHow to control a frame from another frame?
I'm writing a small app which has 2 separate frames.The first frame is like a video player controller. It has Play/Stop/Pause buttons etc. It's named controller.py.The second frame contains OpenGL...
View Article