Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 285 Bytes

README.md

File metadata and controls

16 lines (9 loc) · 285 Bytes

TKImageButton

A Python library for creating image buttons in Tkinter.

Example Usage:

from TKImageButton import ImageButton

root = tk.Tk()

# Define use_temp

button = ImageButton(root, source="src/templates.png", command=use_temp)

button.pack()

root.mainloop()