![]() |
|< 1 2 >| | ![]() |
11 Einträge, 2 Seiten |
$sleepWindow->Busy( -recurse => 0, -cursor => 'watch' );
$sleepWindow->Busy( -recurse => 0, -cursor => 'watch' );
1
2
3
4
5
6
7
8
9
10
11
12
use Tk;
$mw=tkinit;
$mw->Button(-text => "Doit!",
-command => sub {
$t = $mw->Toplevel;
$t->Button(-text => "Hello!", -command => sub { die })->pack;
$t->update;
$t->Busy(-recurse => 1, -cursor => 'watch');
$t->after(2000);
$t->destroy;
})->pack;
MainLoop;
![]() |
|< 1 2 >| | ![]() |
11 Einträge, 2 Seiten |