Previous|Next|Index
Simple Geometry Management
This example is the same as the previous one except it shows how to
change the relative arrangement of widgets.
This is done through options to the "pack()" calls for each of the
widgets. The most useful options are:
- side = {TOP, LEFT, RIGHT, BOTTOM}
- expand = {0, 1}
- fill = {NONE, X, Y, BOTH}
- anchor = {CENTER,W,NW,N,NE,E,SE,S,SW}
source
Previous|Next|Index