Thread Bei resize Widgets mitvergrößern (8 answers)
Opened by Froschpopo at 2005-04-27 20:54

Froschpopo
 2005-04-27 20:54
#43740 #43740
User since
2003-08-15
2653 Artikel
BenutzerIn
[default_avatar]
ich hab ne Funktion:
Code: (dl )
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();

}

wenn jetzt das Fenster vergrößert wird, bleibt das Frame jedoch klein. Wie kann ich das verhindern? Ich möchte, dass das Scolled-Frame stets den ganzen Bildschirm ausfüllt.

View full thread Bei resize Widgets mitvergrößern