Thread Scrolled - Canvas mit Mausrad scrollen - nicht ?
(18 answers)
Opened by Gast at 2007-09-07 14:23
Hallo,
wenn ich ein Canvas mit Scrolled erstelle, wieso scrollt dann diese nicht wenn ich an der Maus drehe? Ist das nromal? Wie muss man das machen? Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 #!/usr/bin/perl use strict; use Tk; my $mw = MainWindow->new; my $c = $mw->Scrolled( qw/Canvas -width 400 -height 400 -relief sunken -bg white -borderwidth 1 -scrollbars se -scrollregion/ => [qw/0 0 1000 1000/])->pack; MainLoop; |