我是Tkinter的新手,特别是在Win7上的Python 2.7中。
以下2个代码块之间是否存在功能差异?如果是这样,是什么?
f = LabelFrame(pw_mid, text=" Frame Title ", width=400)
f.grid(row=0, column=0, sticky=(W, E))
Grid.columnconfigure(f, 0, weight=1)
和
f = LabelFrame(pw_mid, text=" Frame Title ", width=400)
f.grid(row=0, column=0, sticky=(W, E))
f.columnconfigure(0, weight=1)
所以:Grid.columnconfigure(f,...)
与f.columnconfigure(...)
谢谢,Mark。