在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();
最佳答案
翻转磁贴已在Windows Phone 8.1运行时应用程序中更改。在WP8应用中,它由两部分组成,一前一后。但是在WP8.1 RT应用程序中,这与旧的翻转图块不一样,因为前部只是一个没有文本的图像,而后面只是没有图像的文本,请参见图块模板目录(Windows运行时应用程序)
在WP8.1中,如何创建翻转或循环拼贴?答案是使用true调用TileUpdater.EnableNotificationQueue并添加一系列拼贴。使用这种方法,您可以组合任意图块并制作自己的翻转图块或循环图块。
有关详细信息,请参阅本文:http://blogs.msdn.com/b/thunbrynt/archive/2014/04/10/windows-phone-8-1-for-developers-live-tiles.aspx
关于c# - 如何在Windows Phone 8.1中显示辅助磁贴的后退内容,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30296166/