In my C# Form I have a Label that displays a download percentage in the download event:
this.lblprg.Text = overallpercent.ToString(\"#0\") + \"%\";
You can just use
label1.Parent = pictureBox1; label1.BackColor = Color.Transparent; // You can also set this in the designer, as stated by ElDoRado1239