LRESULT
CAppDlg::OnNcHitTest(CPoint point)//WM_NCHITTEST 映射
{
CRect _rect;
GetClientRect( &_rect );
ClientToScreen( &_rect );
return
_rect.PtInRect( point ) ? HTCAPTION : CDialog::OnNcHitTest( point );
}