如何冻结二次平铺WP8.0
本文关键字:WP8 二次 何冻结 冻结 | 更新日期: 2023-09-27 17:57:31
我正试图创建一个辅助磁贴,但我只想显示磁贴背面的东西。针对WP8.0设备时,这可能吗?
private void MenuItem0_Click(object sender, EventArgs e)
{
StandardTileData standardTileData = new StandardTileData();
standardTileData.BackTitle = "AppTitle0";
standardTileData.BackContent = "AppTitle1";
standardTileData.BackBackgroundImage = new Uri("/Assets/red_background.png", UriKind.Relative);
}
不要使用StandardTileData,而是使用IconicTileData。这只有瓷砖的一侧(正面)。
//Creating a iconic tile class
IconicTileData iconic = new IconicTileData()
{
Title = "iconic tile",
Count = 87,
WideContent1 = "Battery left 87%",
WideContent2 = "estimated time remainning",
WideContent3 = "21 hours 24 min",
SmallIconImage = new Uri("Images/Iconic.png", UriKind.Relative),
IconImage = new Uri("Images/Iconic.png", UriKind.Relative),
};
//Always provide a unique tile navigation uri to the each secondary tile that is pinned through the application
string tileuri = string.Concat("/MainPage.xaml?", "id=iconic");
if (tile == null)
{
//Creating a new secondary flip tile on start screen having the properties as provided by the Tiledata class
//and the navigation uri given by tileuri string member
ShellTile.Create(new Uri(tileuri, UriKind.Relative), iconic,true);
}
以下是创建标志性瓷砖的方法。