Effect (animation) on click on Windows Phone applications

1

I am creating an application for Windows Phone 8.1 , using the C # language. But my application is with "static" items and when clicking, it does not create that warping effect by showing that you selected something. Does anyone know how I can enter this?

    
asked by anonymous 28.11.2014 / 03:18

2 answers

1

In the XAML code there are the 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 through element property

    
04.12.2014 / 02:02
0

You can use Microsoft.Phone.Controls.Toolkit.

Download here: The Windows Phone Toolkit

Example of use: Nokia Developers

    
03.12.2014 / 14:54