Shilpa
Shilpa

Reputation: 55

Label backcolor not going transparent

I've set a label's BackColor property to 'Transparent' in windows form but its just White? It's not going transparent?

Anyone know why this is happening?

Upvotes: 3

Views: 15897

Answers (1)

Carmelo La Monica
Carmelo La Monica

Reputation: 765

The label does not support transparency, you must create your own unique custom control, you can see these code examples.

http://www.codeproject.com/KB/dotnet/transparent_controls_net.aspx http://www.codeproject.com/KB/vb/uLabelX.aspx

Upvotes: 7

Related Questions