0

如何向我的 WP8 应用程序添加宽磁贴(从 wp 7.1 升级)?

我尝试遵循以下指南:

http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj720574(v=vs.105).aspx

但我无法让它工作。WMAppManifest.xml 也没有 Wide Tile 选项。我可以添加的唯一图像是小、中和大

4

1 回答 1

2

您参考的文章是关于从 Windows Phone 7.1 项目中启用 Windows Phone 8 设备上的宽磁贴。您的 7.1 应用程序仍然可以安装在 WP8 上。如果您的应用程序已升级到 Windows Phone 8 项目,则使用Flip Tile 模板设置 WideBackContent 和 WideBackground 图像。

FlipTileData TileData = new FlipTileData()
{
   Title = "[title]",
   BackTitle = "[back of Tile title]",
   BackContent = "[back of medium Tile size content]",
   WideBackContent = "[back of wide Tile size content]",
   Count = [count],
   SmallBackgroundImage = [small Tile size URI],
   BackgroundImage = [front of medium Tile size URI],
   BackBackgroundImage = [back of medium Tile size URI],
   WideBackgroundImage = [front of wide Tile size URI],
   WideBackBackgroundImage = [back of wide Tile size URI],
};

否则,如果你真的有 7.1 的项目,我推荐Mangopollo 项目以简化流程。Thomas Fennel的//Build/ 会议可能会有所帮助。

于 2012-12-18T00:58:54.093 回答