VB中如何将两张图片利用鼠标拖动进行互换?(要用拖动控件) 5

VB中如何将两张图片利用鼠标拖动进行互换?(要用拖动控件)... VB中如何将两张图片利用鼠标拖动进行互换?(要用拖动控件) 展开
 我来答
136775565
2014-05-31 · TA获得超过1113个赞
知道小有建树答主
回答量:866
采纳率:88%
帮助的人:835万
展开全部

写了个实例,用到 Image1,Image2,Image3  3个图片控件和一个Shape1模拟拖动框并判断坐标进行互换

工程里面含有图片所以压缩包会大点,代码如下

Dim si As Integer
Private Sub Image1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
si = X
Shape1.Visible = True
Shape1.Left = Image1.Left - 20
End Sub
Private Sub Image1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Shape1.Left = Image1.Left + X - si
End Sub
Private Sub Image1_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
Shape1.Visible = False
If Shape1.Left + Shape1.Width >= Image2.Left Then
Image3.Picture = Image1.Picture
Image1.Picture = Image2.Picture
Image2.Picture = Image3.Picture
End If
End Sub



Private Sub Image2_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
si = X
Shape1.Visible = True
Shape1.Left = Image2.Left - 20
End Sub
Private Sub Image2_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Shape1.Left = Image2.Left + X - si
End Sub
Private Sub Image2_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
Shape1.Visible = False
If Shape1.Left <= Image1.Left + Image1.Width Then
Image3.Picture = Image1.Picture
Image1.Picture = Image2.Picture
Image2.Picture = Image3.Picture
End If
End Sub


已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式