search for: intro_label

Displaying 1 result from an estimated 1 matches for "intro_label".

Did you mean: info_label
2007 Dec 28
1
Wx:Wizard, Wx::WizardPageSimple
...imefly = timefly step_one = Wx::WizardPageSimple.new() setup_page_one(step_one) step_two = Wx::WizardPageSimple.new(nil, step_one) step_one.set_next(step_two) setup_page_two(step_two) run_wizard(step_one) #self.show(true) end def setup_page_one(step) intro_label = "some text here" Wx::StaticText.new(step, :label => intro_label) end def setup_page_two(step) label = "more text here" Wx::StaticText.new(step, :label => label) txt = Wx::TextCtrl.new(step, :id => 21,...