Why do TapGestureRecognizer not work very well in Windows
Lloyd Sheen
1,261
Reputation points
So I have the TapGestureRecognizer defined as follows:
<DataTemplate
x:Key="NotFinished">
<views:GameListItemNotFinishedView>
<views:GameListItemNotFinishedView.GestureRecognizers>
<TapGestureRecognizer
NumberOfTapsRequired="2"
Tapped="GameTappedNF"></TapGestureRecognizer>
</views:GameListItemNotFinishedView.GestureRecognizers>
</views:GameListItemNotFinishedView>
</DataTemplate>
There are blank places in the DataTemplate and in the Android emulator if you click those areas the Tapped event happens. In window the Tapped event is not called.
Another case of Maui is not ready for prime time!!