Thread MainWindow destroy ohne MainLoop zu beenden (6 answers)
Opened by Froschpopo at 2005-04-23 16:40

coax
 2005-04-23 17:56
#43707 #43707
User since
2003-08-11
457 Artikel
BenutzerIn
[default_avatar]
Mit der withdraw-Methode laesst du es vom Bildschirm verschwinden und mit deiconify und raise machst du's wieder sichtbar.

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/perl

 use strict;
 use warnings;

 use Tk;

 my $mw = tkinit();

 my $top = $mw->Toplevel();

 $top->Button(-text => 'MW wiederherstellen',
              -command => sub { $mw->deiconify; $mw->raise; } )->pack();

 $mw->after(5000 => sub { $mw->withdraw } );

 MainLoop;
\n\n

<!--EDIT|coax|1114264670-->
,,Das perlt aber heute wieder...'' -- Dittsche

View full thread MainWindow destroy ohne MainLoop zu beenden