On my system, the caption of a groupbox is always a dark blue colour, how do I change this?

The answer to How do you change the color of the border on a group box? shows how I can override the drawing of the caption and border, but I don't want to have to deal with Visual Styles and drawing rounded corners and the like.

link|improve this question

79% accept rate
feedback

6 Answers

up vote 2 down vote accepted

ForeColor is the property that controls the color of the text in a groupbox.

link|improve this answer
feedback

It seems I can set the caption colour by setting the ForeColor to the colour I want and setting the FlatStyle to Standard.

If the FlatStyle is System, or if it's Standard and the ForeColor isn't changed from the default, then the caption color is set to the color specified in the XP Theme.

link|improve this answer
feedback

This ought to do the trick:

public Form1()
{
  InitializeComponent();
  GroupBoxRenderer.RenderMatchingApplicationState = false;
  groupBox1.ForeColor = Color.Green;
}
link|improve this answer
This is an answer to another question I have asked, if you post this answer to [stackoverflow.com/questions/590864/… I'll accept it there – Patrick McDonald Feb 26 '09 at 17:22
Confuzzling. I updated my answer. – Hans Passant Feb 26 '09 at 18:25
Thanks for the update :) – Patrick McDonald Feb 26 '09 at 19:09
feedback

In Delphi at least, the caption is just the font color, you want to make sure parentfont is false. But that may not be useful at all to you since you tagged your question .net

link|improve this answer
feedback

The above did not help me.
I found the solution here by adding the GroupBox.Header tag:

<GroupBox>
  <GroupBox.Header>
      <TextBlock Text="Header" Foreground="Black"/>
  </GroupBox.Header>
</GroupBox>
link|improve this answer
Which is for WPF, not WinForms. – almhe03 Oct 26 '10 at 8:28
feedback

Setting

groupBox1.ForeColor

changes the forecolor of other controls like button, label etc residing inside the groupbox which has to be unwelcome in most cases if you only need to change the text colour of groupbox. A simple workaround will be

    private void button1_Click(object sender, EventArgs e)
    {
        List<Color> lstColour = new List<Color>();
        foreach (Control c in groupBox1.Controls)
            lstColour.Add(c.ForeColor);

        groupBox1.ForeColor = Color.Red; //the colour you prefer for the text

        int index = 0;
        foreach (Control c in groupBox1.Controls)
        {
            c.ForeColor = lstColour[index];
            index++;
        }
    }

Of course the above code can be meaningless if you are adding controls programmatically later to the groupbox, but the good thing is you can handle all that situations by adding extra conditions in code. To be doubly sure, a list of keyvaluepair of control and forecolor can be employed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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