If you handle the touch events, the map shouldn't be receiving them (Make sure you set e.Handled = true). The map itself does not implement any touch events. If I recall correctly, if you are not handling touch, these events automatically gets converted to mouse down/move/up events.
You could also set IsHitTestVisible=true on the mapcontrol which would prevent the control from getting any mouse and touch events.