LABEL TRANSPARENTE VB

MALA 16/01/2024 14:42:41
#502944
Boa Tarde, estou criando um Label em Runtime mas não consegui fazer ele ficar transparente, segue o código que estou usando, se alguém poder me ajudar agradeço muito.

lbl = New Label

lbl.AutoSize = False

lbl.Left = (pBar.Width / 2) - (lbl.Width / 2)
lbl.Top = (pBar.Height / 2) - (lbl.Height / 2)
lbl.Font = New Font("Verdana", 14, FontStyle.Regular)

lbl.Text = "0,00 % "
lbl.TextAlign = System.Drawing.ContentAlignment.MiddleCenter 'ContentAlignment.MiddleCenter
lbl.BackColor = System.Drawing.Color.Transparent 'Color.Transparent
lbl.Visible = True

'lbl.Dock = DockStyle.Fill

pBar.Controls.Add(lbl)
KERPLUNK 16/01/2024 17:55:44
#502945
Resposta escolhida
Veja se assim resolve:

lbl.BackColor = System.Drawing.Color.Transparent
KERPLUNK 16/01/2024 17:56:40
#502946
É que assim, transparência mesmo, não existe. É tudo relativo ao objeto que contém.
MALA 20/08/2024 08:24:16
#503498
Obrigado a todos
Tópico encerrado , respostas não são mais permitidas