in reply to Tk: Does the 'grid' geometry manager has a problem with a scrolled parent?
the frame expands to encompass everything it contains.$graph_pane = $mw->Frame(
When you use the Scrolled('Frame it sets it's scrollbars to a small size because nothing is in it yet. If you tell it to use a specific size, is one workaround. Like:
$mw->geometry('1000x200'); MainLoop;
However, I question why you want to use 6 Canvas objects, when using one would be more efficient. Additionally, if you use one scrolled Canvas, you can use the -scrollregion along with canvas height and width to adjust what you see and can scroll.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Tk: Does the 'grid' geometry manager has a problem with a scrolled parent?
by tcarmeli (Beadle) on Aug 07, 2006 at 15:19 UTC | |
by zentara (Cardinal) on Aug 07, 2006 at 16:49 UTC |