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
feedback
|
|
Use the
| |||
|
feedback
|
|
If you're referring to the groupbox text itself, then use what Jon Skeet posted. If you're referring to all the subsequent controls in the groupbox, then you can use this code:
| |||
|
feedback
|
|
Actually all the answers posted here changes the forecolor of other controls like button, label etc residing inside the groupbox. To specifically change just the text colour of the groupbox there is a simple workaround.
Of course the above code can be meaningless if you are adding controls programmatically later to the groupbox, but the good thing is you can handle all that situations by adding extra conditions in code. To be doubly sure, a list of keyvaluepair of control and forecolor can be employed. | |||||
feedback
|
|
Or I have changed your code a bit so user can choose between 2 types of color for groupBox only:
Passing "true" or "false" values to the upper mehod, will change the groupBox ForeColor only - while all other controls forecolor will remain default (black). a cent of mine. | |||
|
feedback
|
|
I'm assuming you are in winforms not in WPF now. To change the text color of a group box you use ForeColor this changes the font colour in the header text. | |||
|
feedback
|