faqts : Computers : Programming : Languages : Python : Snippets : Tkinter

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

23 of 38 people (61%) answered Yes
Recently 8 of 10 people (80%) answered Yes

Entry

Button with GIF image

Jul 5th, 2000 10:02
Nathan Wallace, unknown unknown, Hans Nowak, Snippet 273, Python Snippet Support Team


"""
Packages: gui.tkinter
"""
# button-with-gif.py
from Tkinter import *
root = Tk()
image1 = PhotoImage(file='burger.gif')
button = Button(root, image=image1)
button.pack()
Label(root, text="Bwahahaha").pack()
root.mainloop()