Skip to content

Instantly share code, notes, and snippets.

@angeloped
Created February 7, 2019 13:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angeloped/5ff02b9478c42905495ca35274a3dfc3 to your computer and use it in GitHub Desktop.
Save angeloped/5ff02b9478c42905495ca35274a3dfc3 to your computer and use it in GitHub Desktop.
Tkinter window example with gif icon display.
from Tkinter import *
root = Tk()
img = PhotoImage(file='b11.gif')
root.tk.call('wm', 'iconphoto', root._w, img)
root.mainloop()
@Rhubarb06150
Copy link

hello it doesnt work

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment