Hello there,
I've got a StackLayout which has a GestureRecognizer attached. When I click that StacKLayout in UWP, the Recognizer gets fired, but on MacOS it doesn't. Is this a Bug or still not implemented?
SlFilename.GestureRecognizers.Add(new TapGestureRecognizer() { Command = new Command(ChooseNewFilename) });
Also I tried this with no success:
<StackLayout.GestureRecognizers> <TapGestureRecognizer Tapped="Handle_Tapped" /> </StackLayout.GestureRecognizers>
Maybe someone knows a little more about that issue.
Thanks a lot!