I want to know if there is an option to just change the color of group box text at the top left of the group box in a windows form and not any controls or labels located inside of the group box.
I know that GroupBox.ForeColor = Color.Blue
will change all text associated with that box to blue, but it also changes the ForeColor
of labels and other controls in the GroupBox
.
How can I change the color of the group box text without changing its children forecolor?