在PPT中實現(xiàn)任意拖放圖片效果的方法
1、插入圖片(這個不能用插入圖片的方法,而是通過圖片控件(image控件)的方法,如下圖:
2、雙擊圖像控件,輸入以下代碼:
Dim X1, Y1 As Integer '用來記錄位置
Dim Down As Boolean '用來判斷拖放狀態(tài)
Dim X2, Y2 As Integer
Dim Down2 As Boolean
'——————————————————————————
Private Sub Image1_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
'按下并記錄位置
If Not Down Then
X1 = X
Y1 = Y
Down = True
End If
End Sub
Private Sub Image1_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
'記算移動距離
If Down Then
Image1.Left = Image1.Left + X - X1
Image1.Top = Image1.Top + Y - Y1
X1 = X
Y1 = Y
End If
End Sub
Private Sub Image1_MouseUp(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
'改變移動狀態(tài)并顯示移動后的圖片
Down = False
SlideShowWindows(1).View.First
End Sub
繼續(xù)查找其他問題的答案?
-
2021-02-012次播放
-
2021-02-017次播放
-
PowerPoint 2019如何取消最終標(biāo)記狀態(tài)?
2021-02-0157次播放
-
PowerPoint 2019如何設(shè)置數(shù)字簽名?
2021-02-017次播放
-
2021-02-0120次播放
-
PowerPoint 2019如何設(shè)置用密碼進行加密?
2021-02-013次播放
-
PowerPoint 2019如何標(biāo)記為最終狀態(tài)?
2021-01-305次播放
-
PowerPoint 2019如何更改SmartArt圖形的顏色?
2021-01-309次播放
-
PowerPoint 2019如何應(yīng)用自定義主題?
2021-01-304次播放
-
2021-01-303次播放
最近更新
- office ppt 2016 如何給圖片設(shè)置透明色?
- office ppt 2016 如何刪除插入的視頻?
- office ppt 2016 如何設(shè)置幻燈片放映比例?
- office ppt 2016 如何設(shè)置幻燈片放映比例?
- office ppt 2015 如何更換幻燈片的背景顏色?
- office ppt 2016 幻燈片的合并形狀是灰色怎么辦?
- office ppt 2016 如何將圖片設(shè)置為背景?
- office ppt 2016 如何在演示(PPT)中分頁插圖?
- office ppt 2016 在幻燈片中如何打開查找功能?
- office ppt 2016 如何在幻燈片中應(yīng)用“設(shè)計”方案?
點擊加載更多評論>>