Why is it that when you drop a control, for example a label, onto a PictureBox in the Designer, that the PictureBox is not the Parent of that label ?
I can set the PictureBox as parent in code like this :
label1.Parent = PictureBox1;
And that works without problems, but I cannot do it using the designer. In that case the control underneath the PictureBox becomes the parent of the label.
Why is this and is there a fix ?
EDIT:
I need this because I need labels over the PictureBox and the labels should have BackColor = Color.Transparent
It seems the Transparent only works if the label has the PictureBox as Parent.