void CDownloadDlg::OnLButtonDown(UINT nFlags, CPoint point) {// TODO: Add your message handler code here and/or call defaultif(m_rcTitle.PtInRect(point)){m_bMouseDown = true;SetCapture();// 타이틀바를 클릭한 상태에서 다이얼로그를 이동하기 위한 시작 포인터 설정m_ptMouseDown = point;}elsem_bMouseDown = false;CDialog::OnLButtonDown(nFlags, point);}void CDownloadDlg::OnLButtonUp(UINT nFlags, CPoint point) {// TODO: Add your messa..