Lhamo_rin has asked for the wisdom of the Perl Monks concerning the following question:
Llamo_rin
my $mw = MainWindow->new(); $frame1 = $mw->Frame; $frame1->Label(-text => "Data saved at:")-> pack(); for (@info) { $frame1->Label(-text => $_)-> pack(); } $frame2 = $mw->Frame(-borderwidth => 2, -relief => 'groove'); $frame2->Label(-text => "Data to Restore:")-> pack(); $frame2->Label(-text => "Point Saved Current")-> pack(); $frame2->Label(-text => $arrays->[0][0])-> pack(); $frame2->Label(-text => $arrays->[1][0])-> pack(); $frame2->Label(-text => $arrays->[2][0])-> pack(); $frame2->Label(-text => $arrays->[3][0])-> pack(); $frame2->Button(-text => "Restore", -command => \&restore_data)-> pack +(); $frame2->Button(-text => "Cancel", - command => sub { exit})-> pack(); $mw->title("Data Restore"); MainLoop;
edited: Wed Jun 25 13:43:38 2003
by jeffa - closed code tag, s/
//g;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Tk::frames
by crouchingpenguin (Priest) on Jun 25, 2003 at 12:07 UTC |