Thread Toplevel schreibt ins MainWindow (3 answers)
Opened by Froschpopo at 2005-04-02 20:50

Froschpopo
 2005-04-02 20:50
#43133 #43133
User since
2003-08-15
2653 Artikel
BenutzerIn
[default_avatar]
Jedesmal wenn sich dieses Toplevel öffnet, schreibt er "hallooo" in das MainWindow! Warum???
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
sub StartChat {
my $pop = $config{MainWindow}->Toplevel(
-title => "$_[0] - Unterhaltung");
$pop->geometry($config{PrivatChatWidth}.'x'.$config{PrivatChatHeight});
my $MenubarLeft1 = $config{MainWindow}->Frame(
-bg => '#B7CEF1',
-width => $config{MainWidth},
-height=> 40,
-borderwidth => 2
)->pack();
$MenubarLeft1->Label(-text => "hallooo")->pack();

}

View full thread Toplevel schreibt ins MainWindow