Python Forum
set button background with image of window background
Thread Rating:
  • 1 Vote(s) - 2 Average
  • 1
  • 2
  • 3
  • 4
  • 5
set button background with image of window background
#4
(Oct-12-2017, 10:41 AM)Larz60+ Wrote: Don't set a geometry, let it expand with whatever is placed inside.
I use grid, not pack but this is my choice, you should be able to make place work

a label can work, but a frame is better
add a frame on top of your root window, use relative width and height as follows:
self.background = Frame(root, relwidth=1.0, relheight=1.0, bd=0, padx=0, pady=0, image=self.background_image)
self.background .grid(row=0, column=0, sticky='nsew')
I'm not sure I have the syntax right as I haven't tested, but it's close if not correct.

If you switch to grid, please be aware that all widgets in the same container (the frame) must use grid as well.
Frame doesn't have 'image' option
Reply


Messages In This Thread
RE: set button background with image of window background - by gray - Oct-18-2017, 08:22 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Interaction between Matplotlib window, Python prompt and TKinter window NorbertMoussy 3 487 Mar-17-2024, 09:37 AM
Last Post: deanhystad
  Transparent window background, but not text on it muzicman0 7 2,846 Feb-02-2024, 01:28 AM
Last Post: Joically
  Centering and adding a push button to a grid window, TKinter Edward_ 15 4,714 May-25-2023, 07:37 PM
Last Post: deanhystad
  My Background Image Is Not Appearing (Python Tkinter) HailyMary 2 4,234 Mar-14-2023, 06:13 PM
Last Post: deanhystad
  [Tkinter] Background inactivity timer when tkinter window is not active DBox 4 2,919 Apr-16-2022, 04:04 PM
Last Post: DBox
  [Tkinter] Clicking on the button crashes the TK window ODOshmockenberg 1 2,238 Mar-10-2022, 05:18 PM
Last Post: deanhystad
  [Tkinter] Not able to get image as background in a Toplevel window finndude 4 3,911 Jan-07-2022, 10:10 PM
Last Post: finndude
  [Tkinter] Why does the image for the button not appear? finndude 4 2,079 Oct-21-2021, 06:41 PM
Last Post: deanhystad
  [Tkinter] image inside button rwahdan 4 7,054 Jul-12-2021, 08:49 PM
Last Post: deanhystad
  tkinter showing image in button rwahdan 3 5,616 Jun-16-2021, 06:08 AM
Last Post: Yoriz

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020