Effect (animation) on clicking on Windows Phone apps

Asked

Viewed 231 times

1

I’m creating an app for Windows Phone 8.1, using the language C#. But my application is with "static" items and when clicking, it does not create that bending effect showing that you have selected something. Does anyone know how to insert this ?

2 answers

1

In the XAML code there are Clickmode options:

 <Button Content="Button" HorizontalAlignment="Left" Margin="191,161,0,0" VerticalAlignment="Top" ClickMode="Hover"/>
    <Button Content="Button" HorizontalAlignment="Left" Margin="31,161,0,0" VerticalAlignment="Top" ClickMode="Press"/>
    <Button Content="Button" HorizontalAlignment="Left" Margin="31,161,0,0" VerticalAlignment="Top" ClickMode="Release"/>

You can also make these changes via the element property

  • 1

    Thank you Anderson. In my case it would be the effect of clicking on an image for example that will be taken to another page. Anyway it can help in the future.

0

Browser other questions tagged

You are not signed in. Login or sign up in order to post.