How do I clear navigation history in Silverlight/W

2020-06-04 08:41发布

问题:

I'm making a Windows Phone 7 app that has login/logout semantics (authenticating to a web app). When the user logs out I navigate back to the login screen and forget the session authentication.

When doing so I'd also like to clear the navigation history so that can't go back to a page that expects them to be already authenticated.

Can't see how to do it with NavigationService and am wondering if there is a way to do this.

回答1:

There are a few things to look at here. First is I recommend familiarising with the guidance offered here.

Introducing the concept of “Places” - Peter Torr's Blog

Redirecting an initial navigation - Peter Torr's Blog (down at the moment sorry)

If you're able to work within this guidance that is the best path. There is specific advice for dealing with login screens.

If you are compelled to offer a home button feature. Be careful how you apply this, as certifiers are knocking apps back for behaving in unexpected ways with respect to navigation. I feel if this function is behind a home button you should be ok in the surprise department. How this stands over time with certification we will see. Arguably a "logout" scenario applies equally.

Here are three approaches from Richard Woo, Maarten Struys, Sam Jarawan.



回答2:

This code works well (it needs to be in your page), haven't tried to get it past certification yet but the code does work:

 while (true)
 {
     if (this.RemoveBackEntry() == null)
     {
         break;
     }
  }

This does seem to differ with the documentation, which says an exception will be raised when there is no more items so I have logged a bug on user voice for this, so it may change in future.



回答3:

I am afraid you cannot clear the stack of pages and what is more, your app will not pass the certification. More info



回答4:

A simpler way to just clear the backstack is to do the following

while (NavigationService.CanGoBack)
{
    NavigationService.RemoveBackEntry();
}

Be aware though that if you do this in the onloaded event it will fire everytime the page is navigated to and clicking back again will close the app!

Important note, that if you use a webcontrol or the NAX ad system, the backkey is consumed by the page as well as the web control, so will exist the app rather than return to a page.

**Update Also just found an even shorter hand version from the MS dev center

while (NavigationService.RemoveBackEntry() != null);

One simple line. Nice



回答5:

You should create "Loaded" event for your page

    private void LayoutRoot_Loaded(object sender, RoutedEventArgs e)
    {
        try { while (NavigationService.RemoveBackEntry() != null) ; }
        catch (System.NullReferenceException ex) { }
    }