Reputation: 41
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
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