使用tkinter,如何制作一个图片不是文字的按钮?
答案 0 :(得分:3)
有些搜索显示Image on a button。它使用PhotoImage
函数。解释其中包含的一些代码:
from Tkinter import * # Import tkinter
root=Tk() # Create an instance using Tk()
b=Button(root,justify = LEFT) # Create a button
photo=PhotoImage(file="mine32.gif") # Give photo an image
b.config(image=photo,width="10",height="10") # Configure the earlier instance to use the photo
b.pack(side=LEFT) # Pack up the button
root.mainloop() # Create everything