Hi
I dont really understood how "fill" and "expand"
works with layout manager tkinter.pack()
Example:
from tkinter import *
root = Tk()
w = Label(root, text="Red", bg="red", fg="white")
w.pack(side=LEFT, fill = BOTH)
Here is the result:
http://cjoint.com/?0Kepj1E3Tv3
Why is the label "w" only extended vertically and not horizontally too ?
I specified "fill = BOTH" so it should extend in both direction.
(I know that with expand = 1, it will expand in both direction)
thx
--
https://mail.python.org/mailman/listinfo/python-list