I develop an application using Mapsuite10 for WPF. The map that is in the main form of the project looses focus whenever I open a new popup form. In other words, I open a popup form, and the wheel of the mouse stop working after that. And I must click somewhere in the main form (not in the map) and then click again in the map to make the wheel to work again.
I have used this event
Private Sub wp_MouseEnter(sender As Object, e As System.Windows.Input.MouseEventArgs) Handles wp.MouseEnter
wp.Focus()
End Sub
and nothing changed.
I have also noticed that the wheel stops working when I use dual monitor (the wheel stops working after I click to the other monitor).
How can I fix it?