vb.net,我有一个鼠标右键点击的事件,我想在这个事件里面加入鼠标左键点击的动作,

2024-12-01 13:02:46
推荐回答(4个)
回答1:

你已经有了“鼠标右键点击的事件”
说明你肯定已经有了if e.button=windows.forms.mousebuttons.right then

你只需要找到这条语句,通常这句话应该在你的mouseclick事件中。
这条语句改成
if e.button=windows.forms.mousebuttons.left or e.button=windows.forms.mousebuttons.right then

就可以了!

^_^

回答2:

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

回答3:

在事件中判断
if e.button=windows.forms.mousebuttons.left then

回答4:

事件中加动作?什么意思?能不能说清楚一点。