You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
484 B
Perl

use Tk;
my $main = MainWindow->new;
my $listbox1 = $main->Listbox(-width => 25,
-height => 5);
$listbox1->insert('end', "Apples", "Blueberries",
"Bananas", "Kiwis", "Mangoes", "Oranges",
"Pears", "Pineapples");
my $scroll1 = $main->Scrollbar(-command => ['yview', $listbox1]);
$listbox1->configure(-yscrollcommand => ['set', $scroll1]);
$listbox1->pack(-side => 'left', -fill => 'both');
$scroll1->pack(-side => 'right', -fill => 'y');
MainLoop;