def _on_help(self, event): """ Handles the 'Help' button being clicked. """ show_help(self.ui, event.GetEventObject())
def show_help(self, ui, control): """ Shows a help window for a specified UI and control. """ import ui_panel ui_panel.show_help(ui, control)
def _on_help ( self, event ): """ Handles the 'Help' button being clicked. """ show_help( self.ui, event.GetEventObject() )