假定有如下事件过程: Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single) If Button = 2 The

admin2010-03-30  21

问题 假定有如下事件过程:    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、BuRon=2表示按下的是鼠标左键

答案8

解析 本题主要考查鼠标事件MouseDown的各参数的含义。参数X、Y指明鼠标当前所在的位置,而Button=2表示按下的是右键;1表示左键;另外Button=4表示按下鼠标的中间键。故D是错误的。另外“PopupMenu PopForm”表示把在菜单编辑器中定义的菜单表示为弹出式菜单。故选项A、B的说法是正确的。
转载请注明原文地址:https://kaotiyun.com/show/NY1p777K
0

最新回复(0)