我需要关于这个程序的帮助,这个程序应该通过单击按钮在新的 tkinter 窗口中打开图像,但它不仅仅是打开没有图像的新窗口。哪里有问题?
使用:python 3.3 和 tkinter
这是程序:
import sys
from tkinter import *
def button1():
novi = Toplevel()
canvas = Canvas(novi, width = 300, height = 200)
canvas.pack(expand = YES, fill = BOTH)
gif1 = PhotoImage(file = 'image.gif')
canvas.create_image(50, 10, visual = gif1, anchor = NW)
mGui = Tk()
button1 = Button(mGui,text ='Sklop',command = button1, height=5, width=20).pack()
mGui.mainloop()