mikasue has asked for the wisdom of the Perl Monks concerning the following question:
my $user_wizard = new Tk::Wizard( -title => " User Wizard", ); my $dlg = $user_wizard->DialogBox(-title=>'User Wizard', -buttons=>["O +K", "Cancel"]); $user_wizard->addPage( sub { return $user_wizard->blank_frame( -title => "Page Title", -subtitle => "Sub-title", -text => $dlg, ); }); $user_wizard->Show; MainLoop; __END__
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Tk::Wizard content
by zentara (Cardinal) on Apr 18, 2006 at 19:50 UTC | |
by mikasue (Friar) on Apr 18, 2006 at 19:56 UTC | |
by zentara (Cardinal) on Apr 18, 2006 at 20:18 UTC | |
by mikasue (Friar) on Apr 18, 2006 at 21:13 UTC | |
by zentara (Cardinal) on Apr 18, 2006 at 21:41 UTC | |
|