I want make live tile like picture.How can i do this ?
Asked
Active
Viewed 1,283 times
3 Answers
4
The tiles created above were more then likely created server side. That being said a lot has changed between windows phone 7.1 and windows phone 8. Here is a link to the updated information on windows phone 8 live tiles.

Travis Cawthorn
- 41
- 2
2
On previous versions of Windows and Windows Phone, working with Live Tiles were restricted to some predefined templates.
When you see more complex tile, you can bet that the developer generated the image programmatically and then applied it on tile background.
With Windows 10, the Adaptive Tile brings a lot of new possibilities.
...
<binding template="TileLarge" hint-textStacking="center">
<group>
<subgroup hint-weight="1"/>
<subgroup hint-weight="2">
<image src="Assets/Apps/Hipstame/hipster.jpg" hint-crop="circle"/>
</subgroup>
<subgroup hint-weight="1"/>
</group>
<text hint-style="title" hint-align="center">Hi,</text>
<text hint-style="subtitleSubtle" hint-align="center">MasterHip</text>
</binding>
...
You can find the full example here
For previous versions, you can find examples at http://talkitbr.com/2015/05/25/live-tiles/

talkitbr
- 1,112
- 9
- 12