5

这是我目前拥有的代码格式:

import Tkinter as tk

class mycustomwidow:
    def __init__(self,parent,......)
        ......
        ......
        tk.Label(parent,image=Myimage)
        tk.pack(side='top')

def main():
    root=tk.Tk()
    mycustomwindow(root)
    root.mainlopp()

if __name__ == '__main__':
    main()

我的问题是:我应该在哪里声明Myimage我在课堂上使用的照片mycustomwindow

如果我在下面的内容Myimage=tk.PhotoImage(data='....')之前root=tk.Tk()放置,它会给我too early to create image错误,因为我们无法在根窗口之前创建图像。

import Tkinter as tk
Myimage=tk.PhotoImage(data='....') 
class mycustomwidow:
    def __init__(self,parent,......)
        ......
        ......
        tk.Label(parent,image=Myimage)
        tk.pack(side='top')

def main():
    root=tk.Tk()
    mycustomwindow(root)
    root.mainlopp()

if __name__ == '__main__':
    main()

如果我输入这样Myimage=tk.PhotoImage(data='....')的函数main(),它会说它无法Myimageclass mycustomwindow.

import Tkinter as tk

class mycustomwidow:
    def __init__(self,parent,......)
        ......
        ......
        tk.Label(parent,image=Myimage)
        tk.pack(side='top')

def main():
    root=tk.Tk()
    Myimage=tk.PhotoImage(data='....')
    mycustomwindow(root)
    root.mainlopp()

if __name__ == '__main__':
    main()

我的代码结构有什么严重问题吗?我应该在哪里声明Myimage以便可以在其中使用class mycustomwindow

4

1 回答 1

12

在哪里声明图像并不重要,只要

  1. 您在初始化创建它Tk()(第一种方法中的问题)
  2. 使用图像时,图像在变量范围内(第二种方法中的问题)
  3. 图像对象没有被垃圾收集(另一个常见的 陷阱

如果您在main()方法中定义图像,那么您将不得不制作它global

class MyCustomWindow(Tkinter.Frame):
    def __init__(self, parent):
        Tkinter.Frame.__init__(self, parent)
        Tkinter.Label(self, image=image).pack()
        self.pack(side='top')

def main():
    root = Tkinter.Tk()
    global image # make image known in global scope
    image = Tkinter.PhotoImage(file='image.gif')
    MyCustomWindow(root)
    root.mainloop()

if __name__ == "__main__":
    main()

或者,您可以完全放弃您的main()方法,使其自动成为全局:

class MyCustomWindow(Tkinter.Frame):
    # same as above

root = Tkinter.Tk()
image = Tkinter.PhotoImage(file='image.gif')
MyCustomWindow(root)
root.mainloop()

或者,在您的__init__方法中声明图像,但确保使用self关键字将其绑定到您的Frame对象,以便在完成时不会被垃圾收集__init__

class MyCustomWindow(Tkinter.Frame):
    def __init__(self, parent):
        Tkinter.Frame.__init__(self, parent)
        self.image = Tkinter.PhotoImage(file='image.gif')
        Tkinter.Label(self, image=self.image).pack()
        self.pack(side='top')

def main():
    # same as above, but without creating the image
于 2013-07-20T10:24:05.530 回答