Transparent through the label
-
Hi all, On VS2005, I've add a background image on a form, fine. But when I added a label cannot see the image through it. How can I see the image through the label? Thanks a lot.
I appreciate your help all the time... CodingLover :)
-
Hi all, On VS2005, I've add a background image on a form, fine. But when I added a label cannot see the image through it. How can I see the image through the label? Thanks a lot.
I appreciate your help all the time... CodingLover :)
Make the background color of the label transparent ? The other way is to draw the text on the form yourself.
Christian Graus Driven to the arms of OSX by Vista.
-
Hi all, On VS2005, I've add a background image on a form, fine. But when I added a label cannot see the image through it. How can I see the image through the label? Thanks a lot.
I appreciate your help all the time... CodingLover :)
CodingLover wrote:
How can I see the image through the label?
set the Backcolor for the label to: Transparent
label.Backcolor = Transparent
-
Hi all, On VS2005, I've add a background image on a form, fine. But when I added a label cannot see the image through it. How can I see the image through the label? Thanks a lot.
I appreciate your help all the time... CodingLover :)
You set the label to transparent, However be aware that there is no true transparency in .net which means that transparent shows the background image and not the image underneathe.