VB.NET Progress bar percentage
问题 I created a progress bar which works perfectly. I recently added percentages but I'd like to display the label on top of the progress bar. Like so: The only problem as you can see is that the background is not transparent. Dispite having: lblPercentage.BackColor = Color.Transparent on form load... Is there something that can be done for this? 回答1: The Transparent BackColor actually works. The problem is that the label gets its BackColor from the form, since the form is its Parent. Therefore