There are many explanation in google, but I still struggling to implement mouse events.
MouseEnter=\"Canvas1_MouseEnter\"
Your canvas does not have the MouseEnter event. Use it like this
And then the Sub for the Event:
Private Sub Canvas_MouseEnter(sender As Object, e As MouseEventArgs) MessageBox.Show("Hello?") End Sub