I'm trying to create a secondary tile, but I only want the stuff on the back of the tile to be shown. Is this possible when targeting WP8.0 devices?
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);
}