Skip to content

Instantly share code, notes, and snippets.

@jfversluis
Last active August 11, 2017 06:49
Embed
What would you like to do?
The XAML culprit...
<Image Grid.Row="0" Source="MyImage.png" WidthRequest="280" Aspect="AspectFit" Margin="0,0,0,20">
<Image.GestureRecognizers>
<TapGestureRecognizer NumberOfTapsRequired="10" Command="{Binding DoSomethingCommand}" />
</Image.GestureRecognizers>
</Image>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment