How do you change the text color of a CStatic text control? Is there a simple way other that using the CDC::SetTextColor?
thanks...
|
How do you change the text color of a CStatic text control? Is there a simple way other that using the CDC::SetTextColor? thanks... |
|||
|
|
|
You can implement
Notice that the code above sets the text of all static controls in the dialog. But you can use the |
|||||||||||||
|
|
unfortunately you won't find a SetTextColor method in the CStatic class. If you want to change the text color of a CStatic you will have to code a bit more. In my opinion the best way is creating your own CStatic-derived class (CMyStatic) and there cacth the ON_WM_CTLCOLOR_REFLECT notification message.
Obviously you can use a member variable and a setter method to replace the red color (RGB(255,0,0)). Regards. |
|||||
|