如何在 Windows Phone 8.1 中显示辅助磁贴的返回内容
How to Display BackContent For Secondary Tile in Windwos Phone 8.1
在WP8.0中tile是前后显示,到了WP8.1 tile只显示正面,Secondary tile如何给backcontent。
在 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 app中,它分为两部分,一前一后。但在 WP8.1 RT 应用程序中,这与旧的翻转图块不同,因为正面只是一个没有文本的图像,而背面只是没有图像的文本,请参阅图块模板目录(Windows 运行时应用程序)
在WP8.1中,如何创建翻转或循环磁贴?答案是用 true 调用 TileUpdater.EnableNotificationQueue 并在一系列中添加瓷砖。使用这种方法,您可以组合任何图块并制作您自己的翻转或循环图块。
在WP8.0中tile是前后显示,到了WP8.1 tile只显示正面,Secondary tile如何给backcontent。
在 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 app中,它分为两部分,一前一后。但在 WP8.1 RT 应用程序中,这与旧的翻转图块不同,因为正面只是一个没有文本的图像,而背面只是没有图像的文本,请参阅图块模板目录(Windows 运行时应用程序)
在WP8.1中,如何创建翻转或循环磁贴?答案是用 true 调用 TileUpdater.EnableNotificationQueue 并在一系列中添加瓷砖。使用这种方法,您可以组合任何图块并制作您自己的翻转或循环图块。