Why is there no command for pan gesture reconizer? tap gesture recognizer has one.
Steve Brooke
60
Reputation points
using gesture recognizer in a graphics view. Tap gesture allows commands, while pan and pinch do not. I need to respond to these in the view model. Is there some technical reason that these gestures do not allow commands?
<GraphicsView.GestureRecognizers>
<PanGestureRecognizer Command="{Binding Panned}" />
<PinchGestureRecognizer Command="{Binding Pinched}" />
<TapGestureRecognizer Command="{Binding Tapped}"/>
</GraphicsView.GestureRecognizers>
Sign in to answer