Ich versuche, etwas Text über meine Picturebox zu schreiben, also dachte ich, das einfachste und beste, was zu tun ist, ist ein Etikett darüber zu zeichnen. Dies ist, was ich tat:
PB = new PictureBox();
PB.Image = Properties.Resources.Image;
PB.BackColor = Color.Transparent;
PB.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
PB.Size = new System.Drawing.Size(120, 30);
PB.Location = new System.Drawing.Point(100, 100);
lblPB.Parent = PB;
lblPB.BackColor = Color.Transparent;
lblPB.Text = "Text";
Controls.AddRange(new System.Windows.Forms.Control[] { this.PB });
Ich erhalte eine leere Seite ohne PictureBoxen. Was mache ich falsch?