假设有如下事件过程: Private Sub Form_MouseDown(Button As Integer, Shift As Integer, x As Single, y As Single) If Button=2 Then

admin2010-09-11  20

问题 假设有如下事件过程:    Private Sub Form_MouseDown(Button As Integer, Shift As Integer,    x As Single, y As Single)    If Button=2 Then    PopupMenu popForm    End If    End Sub    则以下描述中错误的是______。

选项 A、该过程的功能是弹出一个菜单
B、popForm是在菜单编辑器中定义的弹出式菜单的名称
C、参数x、y指明鼠标的当前位置
D、Button=2表示按下的是鼠标左键

答案D

解析 Button参数是用来标识该事件的产生是按下(MouseDown)或者释放(MouseUp)鼠标按钮引起的。它是具有相应于左按钮(位0)、右按钮(位1),以及中间按钮(位2)的一个位字段。这些位的十进制值分别等于1、2、4。其中只能有一位被设置,指明引起该事件的那个按钮。
转载请注明原文地址:https://kaotiyun.com/show/PAmp777K
0

最新回复(0)