Search code examples
c#visual-studiowindowsgroupbox

Change Colour of Group Box Group Title Name


How I can change the GroupBox title colour?

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


Solution

  • Try using something like the following:

    groupBox1.ForeColor = Color.Red;
    

    It should change to the desired color.