3 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
my $pane = $config{MainWindow}->Scrolled(
"Pane", -scrollbars => 'e',
-bg => 'green',
-width=>500,
-height=>320
)->pack(-side=>'top');
$pane->Label(
-bg => 'red',
-height=>50,
-text => "Perlcommunity"
)->grid(-row=>1, -column=>1,-sticky=>'w');
3 Einträge, 1 Seite |