how could I change BackColor
property to "none"?
I just want to place come Labels on my gif animation, but couldn`t change this white color on label backgroung.
Asked
Active
Viewed 54 times
0

Uwe Keim
- 39,551
- 56
- 175
- 291

Vladyslav Hrehul
- 63
- 7
-
try `Color.Transparent` – Jonathan Applebaum Mar 09 '17 at 22:32
-
Have you tried Transparent? – t0mm13b Mar 09 '17 at 22:32
-
Setting `BackColor` of labels to `Color.Transparent` is not enough. You should also add labels as children of `PictureBox`. – Reza Aghaei Mar 09 '17 at 22:34
-
1Don't use Labels and just draw that text. – LarsTech Mar 09 '17 at 22:35
-
pictureBox1.SendToBack(); pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage; pictureBox1.Dock = DockStyle.Fill; label1.Parent = pictureBox1; label1.BackColor = Color.Transparent; This helped; – Vladyslav Hrehul Mar 10 '17 at 10:23