In the program, I've put an image in, but am unsure how to put the image to the very back, behind the other widgets. Right now, it is above some of the widgets meaning it is covering them .
Asked
Active
Viewed 111 times
0
-
Welcome to Stackoverflow. Try to create a [Minimal, Reproducible Example](https://stackoverflow.com/help/minimal-reproducible-example) – Molitoris Mar 29 '21 at 09:33
1 Answers
0
I found this solution:
Im not sure if this is the solution to your problem, but I'm not gonna read a 33000 line code :p.
This person uses "place" to fix an image to the backgroud.
bgd_img=tk.PhotoImage(...)
bgd_lbl = tk.Label(parent, image=background_image)
bgd_lbl.place(x=0, y=0, relwidth=1, relheight=1)

Rutger de Groen
- 124
- 11