0

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.

SwDevMan81
  • 48,814
  • 22
  • 151
  • 184
Shahin
  • 12,543
  • 39
  • 127
  • 205
  • See this question for solutions: http://stackoverflow.com/questions/1234999/transparency-problem-by-overlapped-pictureboxs-at-c – Mark Aug 13 '10 at 23:06

1 Answers1

1

You need to call Control.BringToFront on the PictureBox you want to be in front (on top).

Peter Olson
  • 139,199
  • 49
  • 202
  • 242
SwDevMan81
  • 48,814
  • 22
  • 151
  • 184