huang zhimin wrote:> The first time I create the status bar by call
> @sb = create_status_bar
> @sb.set_status_text(''Welcome to use Code Line
Statistics'')
> it works perfect. But when I click a tool bar button that trigger an
> event, and call
> @sb.set_status_text(''Finish'')
> if the mouse is on the button, the text of status bar is
"Finish"; but
> once the mouse is out of the button, the text of status bar becomes empty.
Could you show us a bit more code? I added the following in the
minimal.rb sample but it seems to work as I''d expect
@sb = create_status_bar(2)
@sb.set_status_text("Welcome to wxRuby!")
button = Wx::Button.new(self, -1, ''Press me'')
evt_button(button.get_id) { @sb.set_status_text(''Pressed'')
}
alex