CCommonDialog *pMain = (CCommonDialog*)AfxGetMainWnd(); // 메인 윈도우 변수를 초기화 한다. CDC *cdc; // 그려주기 위해서 CDC를 이용한다. // TODO: 여기에 컨트롤 알림 처리기 코드를 추가합니다. CFontDialog dlg; CCommonDialog *pMain = (CCommonDialog*)AfxGetMainWnd(); CDC *cdc; if(dlg.DoModal() == IDOK){ //CClientDC dc(this); CRect rect; pMain->GetClientRect(&rect); cdc = pMain->GetDC(); cdc->SelectStockObject(WHITE_PEN); cdc->SelectStockObject..