Your IP : 216.73.216.74


Current Path : /usr/share/doc/perl-Tk/demos/widget_lib/
Upload File :
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;