programming-examples/perl/GUI/Build a list of Check Box by using the value in an array.pl

13 lines
260 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
#!/usr/local/bin/perl -w
use Tk;
use strict;
my $mw = MainWindow->new(-title => 'My List');
foreach (qw/A B C D/) {
$mw->Checkbutton(-text => $_)->pack(-side => 'left');
}
$mw->Button(-text => "Purchase")->pack(-side => 'bottom');
MainLoop;