in reply to Re: Tk scrollbar
in thread Tk scrollbar
Even with one Listbox it appeared that I cannot control how scrollbar is shown in grid. Or, can I?$top = new MainWindow; $f = $top->Frame; $f->Label(-text=>"1")->grid('x',$f->Label(-text=>"2")); $f->Listbox()->grid($f->Scrollbar(),$f->Listbox()); $f->pack(-side=>'left'); MainLoop;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Tk scrollbar
by kelan (Deacon) on Oct 28, 2004 at 13:26 UTC | |
by Perluser (Novice) on Oct 28, 2004 at 16:38 UTC |