JoacimWall
JoacimWall

Reputation: 41

Template 10 hamburger menu detail page disappears after resume

Start app [Press home button]

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

now i only see the hamburger icon. this is my suspend and resume functions.

Upvotes: 0

Views: 133

Answers (1)

JoacimWall
JoacimWall

Reputation: 41

Resolved by the Template10 team. dg2k. All is fine. Just change ExistingContent.Exclude to ExistingContent.Include for the following line in public override UIElement CreateRootElement(IActivatedEventArgs e) (App.xaml.cs).

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

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

    ...
}

Upvotes: 1

Related Questions