展开全部
Dim LastX As Single
Dim LastY As Single
Dim NowClick As Boolean
Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
LastX = X
LastY = Y
NowClick = True
End Sub
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
If NowClick Then DrawOval X, Y, False
End Sub
Private Sub Form_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
DrawOval X, Y, True
NowClick = False
End Sub
Sub DrawOval(Sx As Single, Ey As Single, Optional DrawNow As Boolean = False)
If DrawNow Then '画出
If Sx <= LastX Or Ey <= LastY Then Exit Sub
If (Ey - LastY) <= (Sx - LastY) Then
Me.Circle ((Sx - LastX) / 2 + LastX, (Ey - LastY) / 2 + LastY), (Sx - LastX) / 2, , , , (Ey - LastY) / (Sx - LastX)
Else
Me.Circle ((Sx - LastX) / 2 + LastX, (Ey - LastY) / 2 + LastY), (Ey - LastY) / 2, , , , (Ey - LastY) / (Sx - LastX)
End If
Else '模拟
If Sx <= LastX Or Ey <= LastY Then Exit Sub
Me.Cls
If (Ey - LastY) <= (Sx - LastY) Then
Me.Circle ((Sx - LastX) / 2 + LastX, (Ey - LastY) / 2 + LastY), (Sx - LastX) / 2, , , , (Ey - LastY) / (Sx - LastX)
Else
Me.Circle ((Sx - LastX) / 2 + LastX, (Ey - LastY) / 2 + LastY), (Ey - LastY) / 2, , , , (Ey - LastY) / (Sx - LastX)
End If
End If
End Sub
Dim LastY As Single
Dim NowClick As Boolean
Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
LastX = X
LastY = Y
NowClick = True
End Sub
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
If NowClick Then DrawOval X, Y, False
End Sub
Private Sub Form_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
DrawOval X, Y, True
NowClick = False
End Sub
Sub DrawOval(Sx As Single, Ey As Single, Optional DrawNow As Boolean = False)
If DrawNow Then '画出
If Sx <= LastX Or Ey <= LastY Then Exit Sub
If (Ey - LastY) <= (Sx - LastY) Then
Me.Circle ((Sx - LastX) / 2 + LastX, (Ey - LastY) / 2 + LastY), (Sx - LastX) / 2, , , , (Ey - LastY) / (Sx - LastX)
Else
Me.Circle ((Sx - LastX) / 2 + LastX, (Ey - LastY) / 2 + LastY), (Ey - LastY) / 2, , , , (Ey - LastY) / (Sx - LastX)
End If
Else '模拟
If Sx <= LastX Or Ey <= LastY Then Exit Sub
Me.Cls
If (Ey - LastY) <= (Sx - LastY) Then
Me.Circle ((Sx - LastX) / 2 + LastX, (Ey - LastY) / 2 + LastY), (Sx - LastX) / 2, , , , (Ey - LastY) / (Sx - LastX)
Else
Me.Circle ((Sx - LastX) / 2 + LastX, (Ey - LastY) / 2 + LastY), (Ey - LastY) / 2, , , , (Ey - LastY) / (Sx - LastX)
End If
End If
End Sub
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询