如何在按钮上制作图像?

时间:2019-02-21 20:05:48

标签: python image button tkinter

我是该网站的新手,但我有一个问题。 这是我在Tkinter中的代码。我的问题是,当我将图像放入按钮内时,它不会显示它。 仅在此程序中,因为如果我在新的干净文件中写入相同的内容,它将起作用。有什么问题吗?

def newWindow():

root.destroy()    #this destroy the main window
window = Tk()     
window.title("Provisory title")
window.resizable(False,False)
window.geometry("420x430")

#BUTTON 
bt3 = Button(window)

#BUTTON POSITIONING
bt3.place(x = 10, y = 10)

#image button
calc = PhotoImage(file= "icon_Calculator.png")
bt3.config(image = calc, width="100",height="100")

0 个答案:

没有答案