0

我对带有 python 3.3.2 的 Notebook 小部件有疑问

这是代码:

gui=Tk()
gui.title("Test")
gui.geometry()

n = ttk.Notebook(gui).grid()
f1 = ttk.Frame(n)
f2 = ttk.Frame(n)
n.add(f1, text='One')
n.add(f2, text='Two')


gui.resizable(width=TRUE, height=TRUE)
mainloop()

这是错误:

Traceback (most recent call last):
  File "C:\Users\SergiX\Desktop\SergiX44's ModTool con sorgente 3.3\SergiX44's ModTool 1.6.4.py", line 179, in <module>
    n.add(f1, text='One')
AttributeError: 'NoneType' object has no attribute 'add'

我不知道错误的原因

谢谢

4

1 回答 1

2

问题是您将grid函数的结果分配给n,而不是Notebook小部件本身。该grid函数总是返回None,因此n具有 的值None,因此是错误。

要解决此问题,请尝试替换此行

n = ttk.Notebook(gui).grid()

用这些线

n = ttk.Notebook(gui)
n.grid()
于 2013-09-21T19:55:19.807 回答