how do I change the color of CButton??? 
Author Message
 how do I change the color of CButton???

Hi NG
I'm supposed to change the color of a button... But I cant' make it work....
thnks for any suggestions....


Sun, 09 Nov 2003 21:58:50 GMT  
 how do I change the color of CButton???
You need to handle the WM_CTLCOLOR message. In MFC, class wizard will create
a OnCtlColor function. It will pass the CWnd pointer for the button.
Remember, it may be a temporary CWnd object, so you need to check the
control ID to make sure it's the button you want to color. If it is, then
return an HBRUSH with the color you want to use to paint the control.

Pete


Quote:
> Hi NG
> I'm supposed to change the color of a button... But I cant' make it
work....
> thnks for any suggestions....



Sun, 09 Nov 2003 22:09:36 GMT  
 how do I change the color of CButton???
Push does not respond to WM_CTLCOLOR; you need to owner draw it.

--
Ajay Kalra [MVP - VC++]

Note: Please post all replies to newsgroup only.


Quote:
> You need to handle the WM_CTLCOLOR message. In MFC, class wizard will
create
> a OnCtlColor function. It will pass the CWnd pointer for the button.
> Remember, it may be a temporary CWnd object, so you need to check the
> control ID to make sure it's the button you want to color. If it is, then
> return an HBRUSH with the color you want to use to paint the control.

> Pete



> > Hi NG
> > I'm supposed to change the color of a button... But I cant' make it
> work....
> > thnks for any suggestions....



Sun, 09 Nov 2003 23:14:36 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. Change CButton color and CButton text color in CDialog

2. Change Color of CButton, CEdit and so on

3. Change background color of CButton

4. CButton Change color of disabled radio button

5. How can I change color of CButton

6. How to change the color of a CButton

7. Change the color on CButton ?

8. Change background and text color in CButton

9. How do you change CButton color???

10. Changing color of a 'CButton button'

11. CButton backgtound color change??

12. Change Text color in CButton?

 

 
Powered by phpBB® Forum Software