1 2 3 4 5 6
$frame2 = $mw->Frame(-background => 'grey')->pack(-side => 'top', -expand => 1, -fill => 'none'); $scrollbar2 = $frame2->Scrollbar(); $scrollbar2->pack(-side => 'right', -fill => 'y'); $list2 = $frame2->Listbox(-yscrollcommand => ['set' => $scrollbar2], -width => 35, -height => 4, -selectborderwidth => 1, -selectmode => "multiple"); $scrollbar2->configure(-command => ['yview' => $list2]); $list2->pack(-side => 'top', -fill => 'none');
2011-10-10T11:59:14 RontronicHallo,
ich benutze mit Tk eine Listbox, die scrollbar ist.
Mit perl-Aufruf funktioniert alles wunderbar.
Wenn ich allerdings für Windows mit dem pp eine exe Datei erstelle, funktioniert das Scrollen mit den Pfeiltaste nicht mehr.