728x90
반응형
HBRUSH CDownloadDlg::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor)
{
HBRUSH hbr = CDialog::OnCtlColor(pDC, pWnd, nCtlColor);
// TODO: Change any attributes of the DC here
hbr = CreateSolidBrush(RGB(244,244,244));
// TODO: Return a different brush if the default is not desired
return hbr;
}
출처: https://use1348.tistory.com/36 [유용한 정보:티스토리]
'유용한 정보' 카테고리의 다른 글
[MFC]XP 버전의 ActiveX를 Vista 이상버전으로 권한상승시키는 방법 (0) | 2024.12.26 |
---|---|
[MFC]마우스 드래그에 의한 윈도우 이동 (0) | 2024.12.26 |
[VC++]윈도우 모양을 내 마음대로... (0) | 2024.12.26 |
[VC++]배경이 투명한 컨트롤 만들기 (0) | 2024.12.26 |
[VC++]파일선택 다이얼로그에서 새폴더 생성버튼 추가 및 다이얼로그... (0) | 2024.12.26 |