hello, is it possible to make one picturebox transparent, so you see the picturebox' picture underneath it? thanks
Printable View
hello, is it possible to make one picturebox transparent, so you see the picturebox' picture underneath it? thanks
Yes. Make the background color of the top picture box Color.Transparent, and make the underneath picture box the Parent of the top one. You will need to alter the Location of the top box so that it is relative to the parent instead of the form. For example:
BBCode:PictureBox2.BackColor = Color.Transparent
PictureBox2.Parent = PictureBox1
PictureBox2.Location = Point.Empty
my image is a bitmap, I draw it with *.drawimage(myimage, 10, 10, 1, 1)
Parent is not a member of bitmap. so how do I draw it over any other control?