1

I want to make a picturebox transparent over 2 labels. I have this form. I want it to appear over "Yes" and "No", but while me able to see "Yes" and "No" integrally, not croped like that.

rene
  • 41,474
  • 78
  • 114
  • 152
Adelin Rau
  • 11
  • 2
  • 1
    What are you targetting: Winforms, WPF, ASP..? __Always__ tag your question correctly! – TaW Dec 04 '16 at 21:54
  • 2
    Welcome to Stack Overflow! You can take the [tour](http://stackoverflow.com/tour) first and learn [How to Ask a good question](http://stackoverflow.com/help/how-to-ask) and create a [Minimal, Complete, and Verifiable](http://stackoverflow.com/help/mcve) example. That makes it easier for us to help you. – Alexandre Tranchant Dec 04 '16 at 21:55
  • 1
    Overlapping controls cannot be transparent, only nested ones can. Often painting and drawing the content is the best solution. – TaW Dec 04 '16 at 21:55
  • 3
    I'm using Winforms – Adelin Rau Dec 04 '16 at 22:11

1 Answers1

0

Assuming you're using the Winform designer, you can right click a control and select 'Bring to Front' or 'Send to Back' from the context menu to change the control's 'z-order.'

Nigrimmist
  • 10,289
  • 4
  • 52
  • 53