in reply to Tk::pack help
... but using grid is much easier to and to understand.my $topframe = $mainWindow->Frame; $topframe->pack(-expand => 'x', -fill => 1); my $leftframe = $topframe->Frame; $leftframe->pack(-side => 'left', -expand => 'x', -fill =>1); my $rightframe = $topframe->Frame; $rightframe->pack(-side => 'left', -expand => 'x', -fill =>1);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Tk::pack help
by eserte (Deacon) on Aug 06, 2004 at 19:28 UTC |