I want to draw the Labels on PictureBoxes but should be transparent background . This is my code : `
Labels[i].Location = new Point(0, 0);
Labels[i].Size = new Size(13, 13);
Labels[i].BackColor = Color.Transparent;
Labels[i].ForeColor = Color.Blue;
Invoke(new MethodInvoker(delegate { Panels.Controls.Add(Pictures[i]); }));
Invoke(new MethodInvoker(delegate { Panels.Controls.Add(Labels[i]); }));
I'am drawing my Pictures fine, Labels too ... But I get the Labels under the Pictures (I can see each label when I drag the Picture out of his place) so I want to know , how I can put them in Front with Transparent BackGround . thank you `