In C#.NET I am trying to programmatically change the color of the border in a group box.

Update: This question was asked when I was working on a winforms system before we switched to .NET.

link|improve this question

67% accept rate
wpf or windows forms? – Will Sep 16 '08 at 20:18
feedback

4 Answers

up vote 2 down vote accepted

There's no color option for the border of a group box in windows forms.

Derive a new control from it and override the OnPaint event

this might help you: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1267856&SiteID=1

link|improve this answer
2  
2.5 years later, this link is no longer valid. Any updated links? – Ed Schwehm Mar 1 '11 at 19:19
feedback

Look here for an example:

http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1256465&SiteID=1

link|improve this answer
Broken link I think – andywebsdale Mar 30 at 9:12
feedback

Building on the previous answer, a better solution that includes the label for the group box:

groupBox1.Paint += PaintBorderlessGroupBox;

private void PaintBorderlessGroupBox(object sender, PaintEventArgs p)
{
  GroupBox box = (GroupBox)sender;
  p.Graphics.Clear(SystemColors.Control);
  p.Graphics.DrawString(box.Text, box.Font, Brushes.Black, 0, 0);
}

You might want to adjust the x/y for the text, but for my use this is just right.

link|improve this answer
Thanks @Mick Bruno, you saved me some serious time :) – Michael La Voie Jan 11 at 2:23
feedback

I'm not sure this applies to every case, but thanks to this thread, we quickly hooked into the Paint event programmatically using:

GroupBox box = new GroupBox();
[...]
box.Paint += delegate(object o, PaintEventArgs p)
{
    p.Graphics.Clear(someColorHere);
};

Cheers!

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.