2012-05-05 1981 views
0

我有一个标签作为框架的窗口。我这样做是因为我想要一个背景图像。但现在我遇到了我用过的其他唱片公司的麻烦。我用来标记事物的其他标签没有透明背景。有没有办法让这些标签的背景透明?Python Tkinter标签背景透明

import Tkinter as tk 

root = tk.Tk() 
root.title('background image') 

image1 = Tk.PhotoImage(file='image_name.gif') 

# get the image size 
w = image1.width() 
h = image1.height() 

# make the root window the size of the image 
root.geometry("%dx%d" % (w, h)) 

# root has no image argument, so use a label as a panel 
panel1 = tk.Label(root, image=image1) 
panel1.pack(side='top', fill='both', expand='yes') 

# put a button/label on the image panel to test it 
label1 = tk.Label(panel1, text='here i am') 
label1.pack(side=Top) 

button2 = tk.Button(panel1, text='button2') 
button2.pack(side='top') 

# start the event loop 
root.mainloop() 

回答

2

我不认为它在Tk中被透明背景支持......你介意放置你的代码吗?可能有帮助。

+0

我也这么认为。我也想这样做。 – User

5

我认为它可以帮助,全黑将是透明的

root.wm_attributes('-transparentcolor','black') 
+1

使用'root.wm_attributes(' - transparentcolor',root ['bg'])'使默认颜色透明。 – Nae