Thread Checkbutton in einer hlist einfügen (1 answers)
Opened by Gast at 2007-05-07 11:30

renee
 2007-05-07 13:06
#46320 #46320
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
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 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;
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Checkbutton in einer hlist einfügen