LABEL TRANSPARENTE VB
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)
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)
Veja se assim resolve:
lbl.BackColor = System.Drawing.Color.Transparent
É que assim, transparência mesmo, não existe. É tudo relativo ao objeto que contém.
Obrigado a todos
Tópico encerrado , respostas não são mais permitidas