You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
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