模板10汉堡菜单详细页面在恢复后消失

时间:2017-01-31 15:31:44

标签: uwp template10

Start app [按主页按钮]

press "all apps" on home screen and the icon for my app

现在我只看到汉堡包图标。这是我的暂停和恢复功能。

1 个答案:

答案 0 :(得分:1)

由Template10团队解决。 dg2k。 一切都很好。 只需将ExistingContent.Exclude更改为ExistingContent.Include,即公共覆盖UIElement CreateRootElement(IActivatedEventArgs e)(App.xaml.cs)中的以下行。

public override UIElement CreateRootElement(IActivatedEventArgs e)
{
    ...

    var navService = NavigationServiceFactory(BackButton.Attach, ExistingContent.Include);

    ...
}