use Tk; my $top = new MainWindow; $top->Scrolled("Listbox")->pack->insert("end", keys %ENV); $top->Scrolled("Listbox")->pack->insert("end", keys %INC); my $c = $top->Scrolled( qw/Canvas -width 400 -height 400 -relief sunken -bg white -borderwidth 1 -scrollbars se -scrollregion/ => [qw/0 0 1000 1000/])->pack; my $ic = $c->Subwidget('scrolled'); $top->MouseWheelBind($ic); MainLoop;