你已经有了“鼠标右键点击的事件”
说明你肯定已经有了if e.button=windows.forms.mousebuttons.right then
你只需要找到这条语句,通常这句话应该在你的mouseclick事件中。
这条语句改成
if e.button=windows.forms.mousebuttons.left or e.button=windows.forms.mousebuttons.right then
就可以了!
^_^
Private Sub Main_MouseUp(sender As Object, e As MouseEventArgs) Handles Me.MouseUp
If e.Button = MouseButtons.Right Then
'右击的动作
End If
'如果你想在右击时不执行左击动作那么去除下面的所有带#号开头的注释
'# If e.Button = MouseButtons.Left Then
'左击的动作
'# End If
End Sub
在事件中判断
if e.button=windows.forms.mousebuttons.left then
事件中加动作?什么意思?能不能说清楚一点。