Thread Perl/tk: bei mit scrolled erzeugte listbox scrollbar farbe ändern
(10 answers)
Opened by lxuser at 2010-05-13 18:42
Also bei mir funktioniert's ohne Probleme mit Tk 804.028 auf einem Linux System:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 $ perl -wMstrict -MTk my $mw = tkinit; my $lb = $mw->Scrolled( "Listbox", -background => "red" )->pack; $lb->Subwidget("xscrollbar")->configure( -background => "blue", -activebackground => "blue", -troughcolor => "blue", ); MainLoop; Falls es so aussehen soll? MfG perl -E'*==*",s;;%ENV=~m,..$,,$&+42;e,$==f;$"++for+ab..an;@"=qw,u t,,print+chr;sub f{split}say"@{=} me"'
|