打擾了
想請問一下下面的語法
我寫的時候是希望一開始有old.png
但按一下鈕以後 本來old.png的那一個位置會出現new.png
但是我發現如果我把msgbox關掉的時候 new.png就會不見
如果我把msgbox那段註解掉 按完鈕也是本來的old.png消失之後那邊一片空白 沒辦法看到new.png
想請問有辦法改進嗎?
目前因為一些特別的原因 希望是在tk這個GUI下做這件事
先謝謝各位
from Tkinter import *
from PIL import Image, ImageTk
root = Tk()
root.geometry('300x300')
def on_click():
img1 = ImageTk.PhotoImage(file='new.png')
La.configure(image = img1)
La.update_idletasks()
import tkMessageBox
tkMessageBox.showinfo(title="Stop", message="I wanna change the
image!")
img = ImageTk.PhotoImage(file='old.png')
La = Label(root, text="abc", image=img)
La.pack(side="top")
Butt = Button(root,text= "Change Image", command = on_click)
Butt.pack()
root.mainloop()