in reply to Re: Perl Tk compound formatting
in thread Perl Tk compound formatting
my $scrollbar = $mw->Scrollbar( ); my $lb = $mw->Listbox(-yscrollcommand => ['set' => $scrollbar]); #Configure the Scrollbar to talk to the Listbox widget $scrollbar->configure(-command => ['yview' => $lb]); #Pack the Scrollbar first so that it doesn't disappear when we resize $scrollbar->pack(-side => 'right', -fill => 'y'); $lb->pack(-side => 'left', -fill => 'both');
How to get this scrollbar to appear alongside the buttons that are listed in the child window?
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Perl Tk compound formatting
by Anonymous Monk on Jun 06, 2013 at 23:21 UTC | |
Re^3: Perl Tk compound formatting
by thundergnat (Deacon) on Jun 07, 2013 at 12:32 UTC | |
by CColin (Scribe) on Jun 07, 2013 at 17:25 UTC |