Thread Widgets manipulieren nach "MainLoop;" ?: mit oder ohne callbacks? (19 answers)
Opened by BratHering at 2005-09-19 15:59

renee
 2005-09-19 16:28
#44578 #44578
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
ja...
Code: (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;

my $mw = tkinit;
my $label = $mw->Label(-text => 'HAllo')->pack();
$label->bind('<Button-1>',[\&subr,$label]);

MainLoop;

sub subr{
my ($self) = @_;
$self->configure(-text => 'Hallo Welt');
}
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 Widgets manipulieren nach "MainLoop;" ?: mit oder ohne callbacks?