Posted on 2012-12-25 17:21
盛胜 阅读(283)
评论(0) 编辑 收藏 引用
在对话框中添加WM_NCHITTEST的消息响应,函数:OnNcHitTest
LRESULT ×××××××::OnNcHitTest(CPoint point)
{
// TODO: 在此添加消息处理程序代码和/或调用默认值
{
CRect rc;
GetClientRect(&rc);
ClientToScreen(&rc);
return rc.PtInRect(point) ? HTCAPTION : CDialog::OnNcHitTest(point);
}
return true;
//return CDialog::OnNcHitTest(point);
}