Answers for "tkinter background image python 3"

0

tkinter background image python 3

You need to apply the grid method to the label that contains the image, not the image object:

bg_image = PhotoImage(file ="pic.gif")
x = Label (image = bg_image)
x.grid(row = 0, column = 0)
http://effbot.org/tkinterbook/photoimage.htm
Posted by: Guest on March-12-2021

Code answers related to "tkinter background image python 3"

Python Answers by Framework

Browse Popular Code Answers by Language