# 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;