Re: [Tutor] moving from pack to grid in tkinter

2006-11-27 Thread Alan Gauld
"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

Re: [Tutor] moving from pack to grid in tkinter

2006-11-26 Thread John Fouhy
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.

[Tutor] moving from pack to grid in tkinter

2006-11-26 Thread Tony Cappellini
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