from tkinter import Tk, Listbox, PhotoImage x = Tk() b = PhotoImage(file="test.gif") c = Listbox(x, width=100, height=20, image=b) c.pack() x.mainloop()
from tkinter import Tk, Listbox, PhotoImage x = Tk() b = PhotoImage(file="test.gif") c = Listbox(x, width=100, height=20, image=b) c.pack() x.mainloop()