Is the Home button to enter MainPage enabled?

I was interested to learn about how to launch the home button to enter the application, which returns you from any page to the main page. As far as I remember, this is not allowed by the WP7 Development Guide. But I can not find any written information about this.

Does anyone know where this is written?

+3
source share
4 answers

The Home button is usually discouraged, the msdn source :

The placement of the Home button in your user interface is different from the Windows Phone navigation model.

"" , : , ( ) "", "" . , "" , . , .

, , , .

, "", , google drive dropbox. , , . , msdn:

, , , . "" , .

, , . , , .

:

protected override void OnNavigatedTo(NavigationEventArgs e)
{
    while (NavigationService.BackStack.Any())
        NavigationService.RemoveBackEntry();
    base.OnNavigatedTo(e);
}
+2

, , , , / , "".

, 3 , A, B C. , C "home", A . , :

A -> B -> C -> A -> B -> C -> A ....

"", . , , , , "". , ,

  • , , "", NavigationService.GoBack(). OnNavigatedTo , NavigationService.GoBack(), .

+1

, . , "" , .

, , . UX, , . , .

, , , NonLinear Navigation Service, .

+1

, , .

0

All Articles