VB 鼠标经过PictureBox 时更换为另一个图像 怎么写

我想要用VB实现   鼠标进入PictureBox时更换为另一个图像离开是又返回原来的图像就是要实现PictureBox的鼠标悬停效果高手速... 我想要用VB实现    鼠标进入PictureBox 时更换为另一个图像离开是又返回原来的图像就是要实现PictureBox的鼠标悬停效果高手速度。。。在线等。。。。 展开
 我来答
百度网友bdb9803
2012-03-28 · TA获得超过1.1万个赞
知道大有可为答主
回答量:1.1万
采纳率:53%
帮助的人:1亿
展开全部
为了避免连续触发:
dim HasChanged as boolean
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
if HasChanged then
Picture1.Picture = LoadPicture(App.Path & "\2.jpg")
HasChanged=false
end if
End Sub

Private Sub Picture1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
if not HasChanged then
HasChanged=true
Picture1.Picture = LoadPicture(App.Path & "\1.jpg")
end if
End Sub
syx54
2012-03-28 · TA获得超过7379个赞
知道大有可为答主
回答量:6567
采纳率:83%
帮助的人:2766万
展开全部
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Picture1.Picture = LoadPicture(App.Path & "\2.jpg")
End Sub

Private Sub Picture1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Picture1.Picture = LoadPicture(App.Path & "\1.jpg")
End Sub
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式