标题:判断点在不在矩形内 ........
取消只看楼主
cy2047
Rank: 1
等 级:新手上路
帖 子:18
专家分:0
注 册:2006-6-17
 问题点数:0 回复次数:0 
判断点在不在矩形内 ........
判断点在不在矩形内 ........

在 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 ,判断的语句写的有错误么 ??

搜索更多相关主题的帖子: 矩形 point DIV 判断 
2006-07-04 12:05



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-76443-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.330773 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved