C# 如何在Windwos Phone 8.1中显示辅助磁贴的背面内容

C# 如何在Windwos Phone 8.1中显示辅助磁贴的背面内容,c#,windows-phone-8.1,win-universal-app,C#,Windows Phone 8.1,Win Universal App,在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 =

在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并在一系列中添加tile。使用这种方法,您可以组合任何一个瓷砖,并制作自己的翻转或循环瓷砖

有关详细信息,请参阅本文: