home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Professionell 2006 December
/
PCpro_2006_12.ISO
/
ossdvd
/
server
/
Perl2
/
site
/
lib
/
Tk
/
demos
/
widtrib
/
labframe.pl
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2000-03-30
|
316 b
|
14 lines
# 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;