Delphi中的一个较难的问题(有关shape控件)在线等
怎样判断一个shape是否在另一个shape之上?比如不规则的shape1在窗体上,不可动,而shape2可以随机移动,当shape2移动到shape1上时,label1...
怎样判断一个shape是否在另一个shape之上?
比如不规则的shape1在窗体上,不可动,而shape2可以随机移动,当shape2移动到shape1上时,label1显示“移动到了”。
怎么实现 展开
比如不规则的shape1在窗体上,不可动,而shape2可以随机移动,当shape2移动到shape1上时,label1显示“移动到了”。
怎么实现 展开
2个回答
展开全部
你的思路不太对,应该判断两个shape有交叉,或者,shape2的上下左右4个属性在shape1中,即:
if (shape2.left >= shape1.left)
and (shape2.right <= shape1.right)
and (shape2.top >= shape1.top)
and (shape2.bottom <= shape1.bottom) then
.......
类似的,还可用Windows API函数,如PtInRect等
if (shape2.left >= shape1.left)
and (shape2.right <= shape1.right)
and (shape2.top >= shape1.top)
and (shape2.bottom <= shape1.bottom) then
.......
类似的,还可用Windows API函数,如PtInRect等
启帆信息
2024-11-22 广告
2024-11-22 广告
作为启帆信息科技股份有限公司的工作人员,对于Omniverse View有一定了解。Omniverse View是NVIDIA Omniverse平台中的一个强大工具,它易于导航且功能丰富,可以支持任何技能水平的专业人员展示和审查3D设计项...
点击进入详情页
本回答由启帆信息提供
展开全部
你的思路不太对,应该判断两个shape有交叉,或者,shape2的上下左右4个属性在shape1中,即:
if
(shape2.left
>=
shape1.left)
and
(shape2.right
<=
shape1.right)
and
(shape2.top
>=
shape1.top)
and
(shape2.bottom
<=
shape1.bottom)
then
.......
类似的,还可用Windows
API函数,如PtInRect等
if
(shape2.left
>=
shape1.left)
and
(shape2.right
<=
shape1.right)
and
(shape2.top
>=
shape1.top)
and
(shape2.bottom
<=
shape1.bottom)
then
.......
类似的,还可用Windows
API函数,如PtInRect等
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询