how to give colour for dialog button or static buuto?any
one explain full code ?pls pls
Answers were Sorted based on User's Feedback
Answer / abhishek kesharwani
Brush *brush;
Initialize the brush pointer in the constructor of your Dialog
Code:
brush = new CBrush(RGB(49,49,49));
Add the WM_CTLCOLR Message handler for the dialog and add the following code
Code:
switch (nCtlColor) {
case CTLCOLOR_BTN:
pDC->SetTextColor(RGB(0, 255, 0));
pDC->SetBkColor(RGB(0, 0, 0));
return (HBRUSH)(brush->GetSafeHandle());
default:
return CDialog::OnCtlColor(pDC, pWnd, nCtlColor);
}
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / harinish
use wm_drawitem function to color the button or static box
| Is This Answer Correct ? | 1 Yes | 5 No |
Answer / pranesh archak
Subclass the control (button or static control) and use
message refelction for message handling.
| Is This Answer Correct ? | 0 Yes | 4 No |
19)how to set Back Ground Picture to a Dialog Box in MFC ?
Do you have an idea about MFC?
What is the base class for MFC Framework ?
In SDI how many view's are attached to document object and in MDI how many view's are attached to Document object?
how does the UIThread and worker thread communicates and handle events
How to update windows title bar dynamically?
Which CPrintInfo member variable must be set for multiple page printouts?
What is Thread ?(VC++)What is the difference between Cmutex and Csemaphone?
What is the difference between hinsrtance and hprevinstance in WinMain function?
What is model and modeless dialog box ? Give some examples?
what is the use of CCmdTarget?
Why Array Index starts from Zero