I have two overlapping pictureboxes.The images of both picture boxes have some transparent pixels.I want to see the bottom picture box through the transparent pixels of the
If it's one PictureBox inside another, you can use:
innerPictureBox.SendToBack(); innerPictureBox.Parent = outerPictureBox;
innerPictureBox.SendToBack();
innerPictureBox.Parent = outerPictureBox;