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.
feedback
|
|
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 | |||||
feedback
|
|
Look here for an example: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1256465&SiteID=1 | |||
|
feedback
|
|
Building on the previous answer, a better solution that includes the label for the group box:
You might want to adjust the x/y for the text, but for my use this is just right. | ||||
|
feedback
|
|
I'm not sure this applies to every case, but thanks to this thread, we quickly hooked into the Paint event programmatically using:
Cheers! | |||
|
feedback
|