尝试使用tkFont时的AttributeError

时间:2013-10-22 15:01:28

标签: python fonts tkinter tk attributeerror

当我运行此代码时:

from Tkinter import *
import tkFont

class Statify():

    def __init__(self):

        ### Broken
        self.titleFont = tkFont.Font(family='Helvetica', size=24, weight='bold')
        self.option_add(*Label*font, self.titleFont)
        ###

        self.root = Tk()
        self.root.withdraw()
        self.main = Toplevel(self.root)
        self.main.title('')
        self.main_header = Frame(self.main)
        self.main_footer = Frame(self.main)
        self.main_title = Label(self.main_header, text='Statify Me v1.0 (WIP)')
        self.main_exit = Button(self.main_footer, text='Quit', command=quit)
        self.main_header.pack()
        self.main_footer.pack()
        self.main_title.pack()
        self.main_exit.pack()
        mainloop()

statify = Statify()

我明白了:

Traceback (most recent call last):
  File "Statify.py", line 23, in <module>
    statify = Statify()
  File "Statify.py", line 7, in __init__
    self.titleFont = tkFont.Font(family='Helvetica', size=24, weight='bold')
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/lib-tk/tkFont.py", line 88, in __init__
AttributeError: 'NoneType' object has no attribute 'tk'

从我读过的内容来看,这应该可行,并且使用选项文件并没有什么不同。

Python版本2.7.2 Tkinter verion 8.5

1 个答案:

答案 0 :(得分:6)

如果查看docs for tkFont,您会发现问题是tkFont.Font需要root参数 - 即父窗口小部件。通过将调用移动到创建根窗口的tkFont.Font下方来解决此问题,然后将self.root添加为关键字参数,如下所示:

self.root = Tk()
self.titleFont = tkFont.Font(root=self.root, family='Helvetica', size=24, weight='bold')
                             ^^^^^^^^^^^^^^

你还没有得到这个bug,但下一行有问题 - 我认为你打算写self.root.option_add而不是self.option_add,我不知道你是什么重新尝试*Label*font业务。