use Tk;
require Tk::LabFrame;
require Tk::LabEntry;
my $test = 'Test this';
$top = MainWindow->new;
my $f = $top->LabFrame(-label => "This is a label",
-labelside => "acrosstop");
$f->LabEntry(-label => "Testing", -textvariable => \$test)->pack;
$f->pack;
MainLoop;
=back
=head1 BUGS
Perhaps LabFrame should be subsumed within the generic pTk
labeled widget mechanism.
=head1 \s-1AUTHOR\s0
Rajappa Iyer rsi@earthling.net
This code is derived from LabFrame.tcl and LabWidg.tcl in the Tix4.0
distribution by Ioi Lam. The code may be redistributed under the same
terms as Perl.
=cut