1

我想要我的应用程序中的“Pin to start”功能。我不想像以下代码那样创建辅助磁贴:

StandardTileData NewTileData = new StandardTileData
{
    BackgroundImage = new Uri("Red.jpg", UriKind.Relative),
    Title = "Secondary Tile",
    Count = 12,
    BackTitle = "Back of Tile",
    BackContent = "Welcome to the back of the Tile",
    BackBackgroundImage = new Uri("Blue.jpg", UriKind.Relative)
};

// Create the tile and pin it to Start. This will cause a navigation to Start and a deactivation of our application.

ShellTile.Create(new Uri("/SecondaryTile.xaml?DefaultTitle=FromTile", UriKind.Relative), NewTileData);

另外,我不希望应用程序在图标固定到开始屏幕时退出。

4

1 回答 1

3

据我所知,没有办法以编程方式将您的主应用程序磁贴固定到开始屏幕,只有辅助磁贴。(见这里

创建辅助磁贴时,操作系统会自动在开始屏幕上显示新磁贴。(并在此过程中停用您的应用程序)我很确定没有办法解决这个问题。对不起!

于 2013-10-30T03:54:25.507 回答