9 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
sub MainChannel {
$config{MainChannel} = $config{MainWindow}->Toplevel(
-width => 350,
-height=> 350,
-title => "Chatfenster"
);
$config{ScreenWidth}=$config{ScreenWidth}-400;
$config{ScreenHeight}=$config{ScreenHeight}-200;
$config{MainChannel}->geometry("+$config{ScreenWidth}+200");
$config{ChannelFrame} = $config{MainChannel}->Frame()->pack;
$config{ChannelFrame}->Scrolled(
"Pane",
-borderwidth => 4,
-scrollbars => 'e',
-bg => 'white',
-width=>350,
-height=>280,
-sticky => 'nw'
)->pack();
}
$widget->bind("<Configure>" => sub { ... widget wurde verschoben/vergroessert/verkleinert, tue etwas ...})
9 Einträge, 1 Seite |