If one add a Menue to a frame with a StatusBar the first field of the
StatusBar is cleared upon menue-activity. Pull-Down is sufficient for
this,
so I think there is no chance for refreshing.
Here a modified part of the respective demo.
Python2.0/wxPython2.3.0/MSW98
If one add a Menue to a frame with a StatusBar the first field of the
StatusBar is cleared upon menue-activity. Pull-Down is sufficient for
this,
so I think there is no chance for refreshing.
Here a modified part of the respective demo.
Python2.0/wxPython2.3.0/MSW98
The default event handler for EVT_MENU_HIGHLIGHT will take the helpString
for the menu item about to be highlighted and puts it in the frame's
statusbar if it has one. If you want to change this behaviour you should be
able to do so by providing your own event handler for EVT_MENU_HIGHLIGHT.
The default event handler for EVT_MENU_HIGHLIGHT will take the helpString
for the menu item about to be highlighted and puts it in the frame's
statusbar if it has one. If you want to change this behaviour you should be
able to do so by providing your own event handler for EVT_MENU_HIGHLIGHT.
No success because EVT_MENU_HIGHLIGHT (in the doc. 'yet not available'
but it's there)
is for individually menu-items, but the status field is already changed
by pulling down the menu, the related event is yet not existing(it seems
so (2.3.0)).
No success because EVT_MENU_HIGHLIGHT (in the doc. 'yet not available'
but it's there)
is for individually menu-items, but the status field is already changed
by pulling down the menu, the related event is yet not existing(it seems
so (2.3.0)).
You could always use a timer or idle event handler to put your desired text
back into the status bar.