15,977
社区成员
发帖
与我相关
我的任务
分享 LRESULT CDlgADVView::OnNcHitTest(CPoint point)
{
// TODO: Add your message handler code here and/or call default
CRect rc;
GetDlgItem(IDC_STATIC_HIDEAREA)->GetWindowRect(&rc);
CPoint pos;
GetCursorPos(&pos);
if (abs(pos.x - rc.left)<=4)
{
return HTRIGHT;
}
return CDlgADVView::OnNcHitTest(point);
}