vb 鼠标放在图片上换图片

其实我是想实现按钮的功能.把当鼠标移到一个图片上时这个图片换成另一张,移走时又换回来!!不管用什么方法只要是在图片上实现就OK.鼠标移走的时候它不会变啊?!?!?!... 其实我是想 实现按钮的功能.

把当鼠标移到 一个 图片上时这个图片换成另一张,移走时又换回来!!

不管用什么方法只要是在图片上实现就OK.
鼠标移走的时候 它不会变啊?!?!?!
展开
 我来答
百度网友6ceb51d95
2008-07-15 · TA获得超过1508个赞
知道大有可为答主
回答量:2108
采纳率:0%
帮助的人:2442万
展开全部
新建一个资源文件,添加两个位图资源,资源号分别为101,102.

Private Sub Form_Load()
Picture1.Picture = LoadResPicture(102, 0)
End Sub

Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Picture1.Picture = LoadResPicture(102, 0)
End Sub

Private Sub Picture1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Picture1.Picture = LoadResPicture(101, 0)
End Sub

'---如果还要区分按下和普通状态可以加入picture1_mousedown和mouseup过程。
_开始腐烂
2008-07-17
知道答主
回答量:15
采纳率:0%
帮助的人:0
展开全部
Private Declare Function ReleaseCapture Lib "user32" () As Long
Private Declare Function SetCapture Lib "user32" (ByVal hwnd As Long) As Long

Private Sub Picture1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
With Picture1
If (X < 0) Or (Y < 0) Or (X > .Width) Or (Y > .Height) Then
ReleaseCapture
Picture1.Picture = A.Picture '鼠标移出了
Else
SetCapture .hwnd
Picture1.Picture = B.Picture '鼠标移入
End If
End With
End Sub
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式