water has asked for the wisdom of the Perl Monks concerning the following question:
my $left_frame = $main->Frame; my $quit_button = $left_frame->Button( -text => 'quit', -command => [ $main => 'destroy' ] ); $quit_button->pack( side => 'top' ); foreach my $r (@radio_values) { $left_frame->Radiobutton( -text => $r, -variable => \$radio_state, -value => $r, -command => [ sub { 'foo' } ], -anchor =>'e', , )->pack( side => 'top', ); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Beginner TK frame question: left aligning buttons
by tachyon (Chancellor) on Sep 11, 2004 at 11:54 UTC | |
by qumsieh (Scribe) on Sep 12, 2004 at 15:23 UTC | |
by tachyon (Chancellor) on Sep 13, 2004 at 02:44 UTC |