15,980
社区成员




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);
}