- Label
Perl Tk Label
examples/tk/label.pl
use strict; use warnings; use Tk; my $top = MainWindow->new; my $label = $top->Label( -text => 'Hello World!', -font => ['fixed', 20], -background => 'red', ); $label->pack; MainLoop;
use strict; use warnings; use Tk; my $top = MainWindow->new; my $label = $top->Label( -text => 'Hello World!', -font => ['fixed', 20], -background => 'red', ); $label->pack; MainLoop;