water has asked for the wisdom of the Perl Monks concerning the following question:
If a button label changes, how does one ask the widget to refresh itself? Thanks.
my $on_off = $left_frame->Button( -text => $FILTER_IS_ON ? 'turn off ' : 'turn on', -command => sub { $FILTER_IS_ON = $FILTER_IS_ON ? 0 : 1; }, -anchor => 'w', )->pack( side => 'left' );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: TK: button update
by mawe (Hermit) on Sep 11, 2004 at 18:39 UTC | |
|
Re: TK: button update
by davidj (Priest) on Sep 12, 2004 at 09:36 UTC |