Title says it all.I can't find a way to do it... .Refresh() doens't do anything, other than crash the program.

The situation I'm in, is that I have a frame which is launched from the "main" frame. This frame makes changes to the "main" frame's menu bar and panel. What can I call to refresh the main frame, from the second frame?

link|improve this question
1  
Can you post some code / stack traces / errors? Something more than "it doesn't work" is going to be required. I use Refresh() on plenty of things and it works fine. – g.d.d.c Jul 19 '11 at 16:39
Well, to be quite honest, I have no clue what to run. I was using .GetParent() to select the frame (the method is in a panel) but that selects the second frame, not the original one. – user825286 Jul 19 '11 at 16:47
If your ancestry looks like this: Frame1 > Frame2 > Panel then you can access Frame1 from Panel as Panel.GrandParent. It may be enough to call Refresh once you have the right element. It really depends a great deal on how your app is structured and what you're changing. – g.d.d.c Jul 19 '11 at 16:52
feedback

1 Answer

up vote 0 down vote accepted

This one could be done with pubsub. Have the second frame publish a message to the first frame telling it to refresh. I actually think you'll want to use Layout() though. That's what I usually use when I remove or add visible elements. You shouldn't need to Refresh() a menu when removing items from it. At least, the example in the wxPython demo doesn't do that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown