判断点在不在矩形内 ........
判断点在不在矩形内 ........
在 CRectDragView类里面定义了 public CRect rect1(20,20,100,100);
单击左键看在不在矩形范围内
void CRectDragView::OnLButtonDown(UINT nFlags, CPoint point)
{
// TODO: Add your message handler code here and/or call
p1=point;
if(point.x>rect1.left&&point.x<rect1.right&&point.y>rect1.bottom&&point.y<rect1.top)
{
lclk=1;
s="lbuttondown"; //调试用的 在矩形内就显示
InvalidateRect(NULL,true);
}
else{
s="nolbdown“; // 不在矩形内就显示这个
InvalidateRect(NULL,true);
}
CView::OnLButtonDown(nFlags, point);
}
显示的始终是nolbdown ,判断的语句写的有错误么 ??