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 ?
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 ?
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
0
You can use Microsoft.Phone.Controls.Toolkit.
Download here: The Windows Phone Toolkit
Example of use: Nokia Developers
Browser other questions tagged c# windows-phone
You are not signed in. Login or sign up in order to post.
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.
– Leandrolap