我试图创建一个辅助磁贴,但我只想要显示磁贴背面的东西。这是针对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);
}
答案 0 :(得分:-2)
使用IconicTileData而不是使用StandardTileData。这只有瓷砖的一个(正面)。
//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);
}
这是创建Iconic图块的方法。