メインページにコントロールを表示する Windows Phone アプリ用のセカンダリ タイルを作成します。
public void CreateSecondaryTile()
{
ShellTile secTile = ShellTile.ActiveTiles.SingleOrDefault(x => x.NavigationUri.ToString().Contains("MainPage.xaml"));
if (secTile == null)
{
StandardTileData fullTile = new StandardTileData()
{
//'*** Primary Tile Properties ***
BackgroundImage = new Uri(controlName, UriKind.Relative),
Count = DateTime.Now.Second,
Title = "Front Title",
//'*** Secondary Tile Properties ***
BackBackgroundImage = new Uri("Background.png", UriKind.Relative),
BackContent = "Back Content",
BackTitle = "Back Title"
};
ShellTile.Create(new Uri("/MainPage.xaml", UriKind.Relative), fullTile);
}