2

How I can change the GroupBox title colour?

The default colour is blue and I would like to alter that.

Grant Thomas
  • 44,454
  • 10
  • 85
  • 129
Rafee
  • 3,975
  • 8
  • 58
  • 88

3 Answers3

5

Try using something like the following:

groupBox1.ForeColor = Color.Red;

It should change to the desired color.

Grant Thomas
  • 44,454
  • 10
  • 85
  • 129
Macnique
  • 1,028
  • 2
  • 19
  • 44
1

In WinForms - change the ForeColor property of the Group Box to the desired color.

0

Did you try setting the ForeColor property?

Josh M.
  • 26,437
  • 24
  • 119
  • 200