// TODO: Return a different brush if the default is not desired
return hbr;
}
///////////////////////////////////////////////////////////////////////
// 요건 소스에서 불러다 사용할 때 쓰는 코드입니다.
void CallBack(COLORREF rgb)
{
// this changed color
}
void CColorTestDlg::OnButton1()
{
// 스태틱의 색깔을 읽는 관계로 항상 넓게 펼처놓습니다.
CColorDialogNotify dlg(0, CC_FULLOPEN, this);
dlg.SetCallback(CallBack);
dlg.DoModal();
}