WPF中没有双击事件,只有MouseDown事件,有些地方又不得不用双击来做,那么如何做双击处理呢?就是判断e.ClickCount的值。VB.NET代码如下:
Private Sub image1_MouseDown(sender As Object, e As MouseButtonEventArgs)
If e.ClickCount = 2 Then
msgbox("双击")
End If
End Sub
测试环境:vs2022 .net6
WPF中没有双击事件,只有MouseDown事件,有些地方又不得不用双击来做,那么如何做双击处理呢?就是判断e.ClickCount的值。VB.NET代码如下:
Private Sub image1_MouseDown(sender As Object, e As MouseButtonEventArgs)
If e.ClickCount = 2 Then
msgbox("双击")
End If
End Sub
测试环境:vs2022 .net6