Transparent Label
C#
3
Posts
3
Posters
0
Views
1
Watching
-
Hi, I want create a Label with transparent Color as "Color.FromArgb(40, 0, 0, 255)" how can I do? Please help me
-
Hi, I want create a Label with transparent Color as "Color.FromArgb(40, 0, 0, 255)" how can I do? Please help me
Hello You'd have to inherit your own class from class Label, and in your class call
SetStyle(ControlStyles.SupportTransparentBackColor, true);
Then change the BackColor as you like.
Regards:rose: