This control allows you to create an animated tile, similar to the tiles present on the Windows Phone home screen.
You can use the TileButton with the following XAML :
<Bewise:TileButton ImageSource="/Views/thumbsup.png" Text="Thumbs up !" Click="TileButton_Click" />
A TileButton contains 3 main properties :
ImageSource : the image to be displayed
Text : The main text, displayed above the image
Description : a longer text
The animations between Text and Image, and the flip to show the Description will only be played if necessary. If you don’t set the 3 properties, the animation supposed to show it won’t play.
By default, the Text is white, and the background is the Phone Accent Color, you can change these values by setting the Foreground and the Background properties.