要求当鼠标在图片框P1中移动时,立即在图片框中显示鼠标的位置坐标。下面能正确实现上述功能的事件过程是

admin2019-04-29  26

问题 要求当鼠标在图片框P1中移动时,立即在图片框中显示鼠标的位置坐标。下面能正确实现上述功能的事件过程是

选项 A、Private Sub P1_MouseMove(Button As Integer,Shift As Integer,X As Single,Y As Single)
PrintX,Y
End Sub
B、Private Sub P1_MouseDown(Button As Integer,Shift As Integer,X As Single,Y As Single)
Picture.Print X,Y
EndvSub
C、Private Sub P1_MouseMove(Button As Integer,Shift As Integer,X As Single,Y As Single)
P1.Print X,Y
End Sub
D、Privme Sub Form_MouseMove(Button As Integer,Shift As Integer,X As Single,Y As Single)
P1.Print X,Y
End Sub

答案C

解析 在图片框中移动鼠标触发的事件是P1_MouseMOVe事件,在事件中控制在图片框中输出坐标。
转载请注明原文地址:https://kaotiyun.com/show/7FUp777K
0

最新回复(0)