在WP8.0平铺显示正面和背面,当只到前面的WP8.1平铺显示时,如何为辅助贴图提供后退内容。
在WP 8.0中
StandardTileData NewTileData = new StandardTileData
{
BackgroundImage =new Uri(@"Shared/ShellContent/Snow.png",UriKind.Relative),
Title = ((CheckBox)sender).Content.ToString(),
Count = 1,
BackBackgroundImage =new Uri(@"Shared/ShellContent/Snow.png", UriKind.Relative),
BackTitle = "Back Title",
BackContent = "Back Content"
};
WP 8.1中的
var secondaryTile = new SecondaryTile(
"secondaryTileId",
"Text shown on tile",
"secondTileArguments",
new Uri("ms-appx:///Assets/rainier.jpg", UriKind.Absolute),
TileSize.Square150x150);
bool isPinned = await secondaryTile.RequestCreateAsync();
答案 0 :(得分:2)
Windows Phone 8.1运行时应用中的翻转磁贴已更改。在WP8应用程序中,它由两部分组成,一个是正面,另一个是背面。但在WP8.1 RT应用程序中,这与旧的翻转图块不同,因为正面只是没有文字的图像而背面只是没有图像的文字,请参阅图块模板目录(Windows运行时应用程序)
在WP8.1中,如何创建Flip或Cyclic tile?答案是使用true调用TileUpdater.EnableNotificationQueue并在系列中添加切片。使用这种方法,您可以组合任何瓷砖并制作自己的翻转或循环瓷砖。
有关详细信息,请参阅此文章:http://blogs.msdn.com/b/thunbrynt/archive/2014/04/10/windows-phone-8-1-for-developers-live-tiles.aspx