Act on clicked and long clicked?

Hi,

in code below only the first trigger fires, the other never happens. I want to have a retangle, when short clicked fire ‘increase . . .’ and when long clicked (tapped?) fire ‘decrease . . .’.

<Rectangle Fill="#f44336" >
  <Text Value="{player1score}" Margin="30,30,0,0" FontSize="30" Alignment="TopLeft" />
  <Clicked Handler="{increasePlayer1}" />
  <Tapped Handler="{decreasePlayer1}" />
</Rectangle>

Hi, Try Tapped and LongPressed

Thanks, exactly what I need.