How can I get rounded corners in a GroupBox in my form? Is there any option in the property tab?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

When visual styles are enabled for your application and the FlatStyle property is set to "System", the group boxes look like they have slightly rounded corners, but it's probably no more than 3 to 5 degrees. So I suppose this is not what you're looking for.

Unfortunately, there's no built-in way to customize its degree of roundedness. The only real solution is to use a custom control. You can either inherit off of the existing GroupBox control and override its Paint event to draw the borders yourself, or you can use one of these existing controls:

link|improve this answer
feedback

Take a look at this open source controls: http://roundedgroupbox.codeplex.com/

link|improve this answer
feedback

You may use this hack, using the BorderThickness attribute to control the roundness.

<GroupBox Height="auto" Background="White" BorderThickness="30" BorderBrush="White">

It looks like this on my Windows 7 computer.

Rounded corner

link|improve this answer
In the end, this solution produced some artifacts. I ended up using the "Border" element instead. – Stiefel Aug 25 '11 at 14:15
feedback

Your Answer

 
or
required, but never shown

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