Replies: 1 comment
-
Thank you @QuadMan , I have found wierd behaviour on my side too. I have issued a new issue. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have Tap command and LongPressCommand on the same label.
<Label Text="Test"> <Label.GestureRecognizers> <TapGestureRecognizer Command="{Binding TapCommand}"/> </Label.GestureRecognizers> <Label.Behaviors> <toolkit:TouchBehavior LongPressDuration="1000" LongPressCommand="{Binding LongPressCommand}"/> </Label.Behaviors> </Label>
And some times just two clicks (with small delay) on label leads to longpress command execution. Is there a way to prevent it?
PS. I tried to make Command in TouchBehavior - the same results.
Beta Was this translation helpful? Give feedback.
All reactions