| Current Path : /usr/share/doc/perl-Tk/demos/widget_lib/ |
| Current File : //usr/share/doc/perl-Tk/demos/widget_lib/labframe.pl |
# LabFrame, frame with embedded label. use Tk; use Tk::LabFrame; use Tk::LabEntry; my $test = 'Test this'; my $top = MainWindow->new; my $f = $top->LabFrame(-label => "This is a label", -labelside => "acrosstop"); $f->LabEntry(-label => "Testing", -textvariable => \$test)->pack; $f->pack; MainLoop;