Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Achieving cyclic tile behavior with Flip tile.

Currently I implemented my Flip Tile with the help of Scheduled Task, So one issue with similar approach is the Flip tile will flip the same image during the time interval. So what I am trying to achieve is I need to flip my images like cyclic tile. Ie one after another manner. One thing to notice here is I am using local (Isolated storage) images as Tile images not remote uri’s. Is it possible to achieve similar implementation in windows phone 8.

like image 242
Stephan Ronald Avatar asked Nov 11 '22 21:11

Stephan Ronald


1 Answers

If you want to get the behaviour of the CycleTemplate then this is not possible with the FlipTemplate.

If you are trying to achieve having tiles which include a combination of images and text (set as Content in the FlipTemplate) then a solution would be to generate an image which includes the text you're interested in and then use that image, along with any other, in the CycleTemplate.

like image 153
Matt Lacey Avatar answered Dec 24 '22 07:12

Matt Lacey