In my C# Form I have a Label that displays a download percentage in the download event:
this.lblprg.Text = overallpercent.ToString(\"#0\") + \"%\";
After trying most of the provided solutions without success, the following worked for me:
label1.FlatStyle = FlatStyle.Standard label1.Parent = pictureBox1 label1.BackColor = Color.Transparent