frame.columnconfigure(...)和Grid.columnconfigure(frame,...)之间的区别

时间:2016-11-06 23:37:36

标签: python python-2.7 tkinter

我是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。

0 个答案:

没有答案