In .Net MAUI 8.0.3 and 8.0.6 Tap gestures are not working in windows but works fine in Andriod and IOS. Please help if any additional registration need to be done
Tap Gestures are not triggering in windows MAUI. tried giving Buttons as secondary and primary both but no use
Since you did not provide any sample code, I created a new MAUI application in VS2022 on .NET 8.0.3 and modified this code in the pre-generated sample code in MainPage.xaml:
In the MainPage.xaml.cs file, I added only this:
I then started the project in Windows and when the button was clicked, both the generated
OnCounterClickedevent and theTapGestureRecognizer_Tappedevent added by me were called and the variable count was incremented by 2.In my experience, some xaml components override Tap events or rather some components do not pass Taps to the component above or below. I had this problem on iOS, where I had to specify that the component must pass the user's Tap to other components that are in it.