Leser: 1
![]() |
![]() |
2 Einträge, 1 Seite |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#!/usr/bin/perl use strict; use warnings; use Tk; use Tk::HList; my $mw = tkinit(); my $variable; my $hlist = $mw->HList->pack; my $checkbutton = $hlist->Checkbutton( -text => 'Testcheckbutton', -variable => \$variable ); $hlist->add(0); $hlist->itemCreate(0,0,-itemtype => 'window' , -widget => $checkbutton ); MainLoop;
![]() |
![]() |
2 Einträge, 1 Seite |