vote up 1 vote down star

Why can't I set the BackColor of a Label to Transparent? I have done it before, but now it just don't want to...

I created a new UserControl, added a progressbar and a label to it. When I set the BackColor of the label to transparent it is still gray =/ Why is this?

What I wanted was to have the label on top of the progressbar so that its text was "in" the progressbar...

flag

7 Answers

vote up 4 vote down check

WinForms doesn't really support transparent controls, but you can make a transparent control yourself. See my answer here.

In your case you should probably subclass the progress bar and override the OnPaint method to draw a text on the progress bar.

link|flag
how would you draw the text on the progress bar? – Svish Mar 3 at 14:06
I haven't done this for a progress bar, but you can create an overload for the OnPaint method. Here you first call base.OnPaint and then use the graphics object passed in the event arguments to draw the text on top of the control. – Rune Grimstad Mar 3 at 14:30
vote up 2 vote down

If you want to focus on designing your windows application, I suggest you use WPF.

Making controles transparent in WPF is very easy.

<TextBox Width="200" Height="40" Opacity="0.5"/>
link|flag
I'm sure WPF does transparent labels correctly, however just wanted to point out that the code in this example, if applied to a Label, would make the text semitransparent too - which is NOT desired! – romkyns Nov 6 at 23:26
vote up 1 vote down

Add a new class to your project and post the code shown below. Build. Drop the new control from the top of the toolbox onto your form.

using System;
using System.Windows.Forms;

public class TransparentLabel : Label {
  public TransparentLabel() {
    this.SetStyle(ControlStyles.Opaque, true);
    this.SetStyle(ControlStyles.OptimizedDoubleBuffer, false);
  }
  protected override CreateParams CreateParams {
    get {
      CreateParams parms = base.CreateParams;
      parms.ExStyle |= 0x20;  // Turn on WS_EX_TRANSPARENT
      return parms;
    }
  }
}
link|flag
Well, this almost seems to work. Problem is when it is ontop of a progressbar. It seems like the text disappears and reappears sometimes... – Svish Mar 5 at 13:53
The text goes away when I set the progressbar value to something... – Svish Mar 5 at 13:56
Stacking effects are not supported, it can only track changes to the container. – nobugz Mar 5 at 17:04
so, like if I changed the background color of the user control? (and there was no progress bar between them?) – Svish Mar 6 at 7:53
Right. Or anything else drawn on the container. – nobugz Mar 6 at 13:24
vote up 0 vote down

So as the comment to my previous answer stated, Control is the default behaviour, and is what I remembered as being Transparent.

Anyway, have you tried setting the background property of your UserControl, or the container your label is in (Panel, Form, whatever?), your label should reflect that color :)


Old Answer: Its been a while since I did winforms programming, but as I recall labels are transparent per default? thus its only the text that gets an actual color and the bacground color mimics whatever is behind it :)

link|flag
No, Label by default has a Background of Control. However, you're right in that setting it to Transparent does mimic the colour of the control that's hosting it, so it paints the background as solid gray. – Matt Hamilton Mar 3 at 11:00
Should have fired up WinForms and checked :P, true Control is the default behaviour, it just seems transparent because they share the same color :) – thmsn Mar 3 at 11:34
vote up 0 vote down

Your label looked like a good solution --- I'm putting it in front of a PictureBox containing a "splash" image. It looks good in the designer but at runtime the text is not visible. Even if I don't change the text or the graphic the label appears blank at runtime. Any ideas?? Thanks! -Jim

link|flag
vote up 0 vote down

It is possible to do exactly what you want to achieve. It just takes a little time to play with controls. It is possible to create a Label control with transparent background, and place it on top of Progressbar control.

Check my answer to another SO question.

link|flag
vote up 0 vote down

as to an explanation for your problem, windows doesn't do transparency for background controls like you'd expect-i'm guessing the gray background is actually the form's surface. whatever controls are drawn between the form surface and your label are ignored.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.