2013-03-08 55 views

回答

2

有一個很好的入門指南here。您應該考慮的事實是,您在Live Tile背景中看到的圖像是動態生成的(例如,在服務器上),然後通過預定義的通道返回到手機。

+0

發現的例子,我解決我與生成的動態圖像問題 – user1924375 2013-03-16 20:56:25

4

上面創建的貼圖更有可能創建服務器端。話雖如此,windows phone 7.1和windows phone 8之間已經發生了很大的變化。這裏是a link來更新windows phone 8 live瓦片上的信息。

2

在以前版本的Windows和Windows Phone上,使用Live Tiles僅限於某些預定義的模板。

當您看到更復雜的拼貼時,可以打賭開發人員以編程方式生成圖像,然後將其應用於拼貼背景。

在Windows 10中,Adaptive Tile帶來了許多新的可能性。

... 
<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> 
... 

你可以找到完整的例子here

對於先前的版本,你可以在http://talkitbr.com/2015/05/25/live-tiles/