循环瓦模板的Windows Phone 8.1(Cyclic tile template Windo

2019-10-22 17:42发布

我想使用此代码来创建循环瓦模板

TileUpdateManager.CreateTileUpdaterForApplication().EnableNotificationQueue(true);

var tileXml = TileUpdateManager.GetTemplateContent(TileTemplateType.TileSquare150x150Image);

var tileImage = tileXml.GetElementsByTagName(“image”)[0] as XmlElement;
tileImage.SetAttribute(“src”, “ms-appx:///Assets/image1.jpg”);
var tileNotification = new TileNotification(tileXml);
TileUpdateManager.CreateTileUpdaterForApplication().Update(tileNotification);

tileImage.SetAttribute(“src”, “ms-appx:///Assets/image2.jpg”);
tileNotification = new TileNotification(tileXml);
tileNotification.Tag = “myTag”;
TileUpdateManager.CreateTileUpdaterForApplication().Update(tileNotification);

但是玻化砖不是周期性的,他们只翻转。 如何使上述代码充当循环瓷砖?

Answer 1:

循环瓷砖模板是老 - 为Windows Phone 8的或Windows Phone 8.1的Silverlight。 你可以阅读他们在这里 。 对于Windows Phone的8.1 RT只能使用像TileSquare150x150Image新的模板,陆续上市这里 。 换新遗憾的是没有像循环瓷砖模板的好“肯伯恩斯”的效果。



文章来源: Cyclic tile template Windows Phone 8.1