Thread Label grösse aktualisieren (3 answers)
Opened by master at 2005-10-05 13:16

renee
 2005-10-05 14:17
#44740 #44740
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Du hast wahrscheinlich kein packPropagate(0) verwendet ?!?

So klappt es:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use Tk;

my $mw = tkinit;
my $label = $mw->Label(-text => 'Ok',
-relief => 'sunken',
-width => 30,
-height => 30)->pack();
$mw->Button(-text => 'resize', -command => [\&res,$label])->pack();
$label->packPropagate(0);

MainLoop;

sub res{
my ($label) = @_;
$label->configure(-height => 40, -width => 40);
}
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Label grösse aktualisieren