Reputation: 12843
How can I put a transparent PictureBox on another PictureBox?
One transparent PictureBox works on my form but i can not put a transparent PictureBox over another PictureBox.
Here is a picture from my problem.
Upvotes: 0
Views: 1923
Reputation: 49978
You need to call Control.BringToFront
on the PictureBox
you want to be in front (on top).
Upvotes: 1