从Toplevel访问继承的方法

时间:2013-08-08 14:14:22

标签: python python-2.7 tkinter

Toplevel有一个distroy方法,我很难从课堂内进行访问。

此代码有效:

top = Toplevel()
Message(top, text="bla bla bla...").pack()
Button(top, text="Dismiss", command=top.distroy).pack()
top.mainloop() 

这不是:

from Tkinter import Toplevel,Message,Button,mainloop

class Demo(Toplevel):
    def __init__(self,title,message,master=None):
        Toplevel.__init__(self,master)
        self.title = title
        msg = Message(self,text=message)
        msg.pack()
        button = Button(self, text="Dismiss", command=self.distroy)
        button.pack()

if __name__ == '__main__':
    t1 = Demo("First Toplevel", "some random message text... goes on and on and on...")
    t2 = Demo("No, I don't know!", "I have no idea where the root window came from...")

    mainloop()

错误讯息:

Traceback (most recent call last):
  File "C:\Users\tyler.weaver\Projects\python scripts\two_toplevel.pyw", line 16, in <module>
    t1 = Demo("First Toplevel", "some random message text... goes on and on and on...")
  File "C:\Users\tyler.weaver\Projects\python scripts\two_toplevel.pyw", line 12, in __init__
    button = Button(self, text="Dismiss", command=self.distroy)
AttributeError: Demo instance has no attribute 'distroy'

1 个答案:

答案 0 :(得分:2)

那是因为你拼写错误的“毁灭”:

from Tkinter import Toplevel,Message,Button,mainloop

class Demo(Toplevel):
    def __init__(self,title,message,master=None):
        Toplevel.__init__(self,master)
        self.title = title
        msg = Message(self,text=message)
        msg.pack()
        # Use "self.destroy", not "self.distroy"
        button = Button(self, text="Dismiss", command=self.destroy)
        button.pack()

if __name__ == '__main__':
    t1 = Demo("First Toplevel", "some random message text... goes on and on and on...")
    t2 = Demo("No, I don't know!", "I have no idea where the root window came from...")

    mainloop()