How do you change the text color of a group box in C#? The "documentation" doesn't even mention this, and Googling hasn't turned up an answer.
Thanks! Alan
Use the ForeColor property. Sample code:
ForeColor
using System; using System.Drawing; using System.Windows.Forms; class Test { [STAThread] static void Main(string[] args) { Form form = new Form(); GroupBox group = new GroupBox(); group.Text = "Text"; group.ForeColor = Color.Red; form.Controls.Add(group); Application.Run(form); } }
1.4m articles
1.4m replys
5 comments
57.0k users