Tagged Questions

2
votes
4answers
10k views

How do you change the color of the border on a group box?

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.
0
votes
2answers
770 views

Positioning Controls in the .Net GroupBox

Normally, I write forms that are resizeable (gracefully) using the method below. using System.Drawing; using System.Windows.Forms; namespace silly { public class Form1 : Form { ...