"Tony Cappellini" <[EMAIL PROTECTED]> wrote
>>>
> But i'm trying to get away from pack() and use grid()
There's no good reason not to use pack where it makes sense.
You can mix n match provided you keep it consistent within a
single container(usually a frame)
Grid is best where the controls conf
On 27/11/06, Tony Cappellini <[EMAIL PROTECTED]> wrote:
> I've got a main window which is 640 * 400.
> self.root.geometry("600x400")
>
> self.label.pack(side=BOTTOM, fill=X)
> This line would put the label at the bottom of the window, and extend to
> both left and right edges of the window.
I've got a main window which is 640 * 400.
self.root.geometry("600x400")
self.label.pack(side=BOTTOM, fill=X)
This line would put the label at the bottom of the window, and extend to
both left and right edges of the window.
I want to change to grid geometry because I have several more widge