k0rn has asked for the wisdom of the Perl Monks concerning the following question:
# Our Main Window my $mainWindow = new MainWindow; # Create a frame for our widgets my $frameMain = $mainWindow -> Frame( -relief => 'sunken' ); my $scrolledText = $frameMain -> Scrolled( 'Listbox', -scrollbars => 'oe', -background => 'white', #-foreground => 'black', -width => '90', -height => '30' ); $scrolledText -> pack( -fill => 'both', -expand => '0', -side => 'left' ); my $scrolledNicks = $frameMain -> Scrolled( 'Listbox', -scrollbars => 'eo', -background => 'white', #-foreground => 'black', -width => '10', -height => '30' ); $scrolledNicks -> pack( -expand => '0', -fill => 'both', -side => 'right' );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Tk gap between widgets on expand
by lamprecht (Friar) on Mar 29, 2010 at 07:33 UTC | |
by k0rn (Acolyte) on Mar 29, 2010 at 14:01 UTC |