How to implement transparent background of the label control?

  • Thread starter Thread starter Yufan
  • Start date Start date
Label transparency is not supported in the .NET CF. Where do you need it
for? An option to achieve the same result would be to override the OnPaint
method of the container on which you wanted to put your label and draw the
text yourself.
 
You should be able to overwrite OnPaint on a PictureBox as well and directly
write the text on it.

--
Regards,

Maarten Struys
PTS Software bv
----
 
Thanks!

Maarten Struys said:
You should be able to overwrite OnPaint on a PictureBox as well and directly
write the text on it.

--
Regards,

Maarten Struys
PTS Software bv
 
Back
Top