Thread Meldung mit Timeout (2 answers)
Opened by Gast at 2009-02-11 19:43

styx-cc
 2009-02-11 20:51
#118806 #118806
User since
2006-05-20
533 Artikel
BenutzerIn

user image
Hi.

Hier ein Beispiel:

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/perl -w
use strict;
use Tk;

my $mw = tkinit(-title => 'Test');

my ($top,$label);
my $btn = $mw->Button(-text => 'Topelevel oeffnen', -command => sub {
$top=$mw->Toplevel;
$label = $top->Label(-text => 'Ich bin ein Toplevel')->pack;
kill_toplevel($top);
})->pack;


MainLoop;

sub kill_toplevel {
my $top = shift;
$top->after(100*10, sub {$top->destroy})
}


MfG
Pörl.

View full thread Meldung mit Timeout