我的应用程序中的每个页面都有辅助磁贴。当我将我的应用程序切换到 Tombstone 状态时,它无法从辅助磁贴导航相应的页面。加载前一个页面的应用程序在停用之前打开。
这里是创建辅助磁贴的示例代码。
if (!app.TileExists("/requestcalls"))
{
StandardTileData NewTileData = new StandardTileData
{
BackgroundImage = new Uri("/Assets/Images/Tile.png", UriKind.Relative),
Title = Request Calls",
BackTitle = Request Calls",
BackContent = "Add a new request",
}; ShellTile.Create(new Uri("/requestcalls.xaml?", UriKind.Relative), NewTileData); }