views:

26

answers:

1

Hi All,

How to create a back button to move to last visited page in wpf. I want hide the navigation bar and give back button option with parameters.

Geetha

+1  A: 

http://msdn.microsoft.com/en-us/library/system.windows.navigation.navigationservice.goback.aspx

Ragunathan
You can't pass parameter? What kind of parameters you need to pass?To goto specific page you can use this.NavigationService.Navigate(new ContentPage());or this.NavigationService.Navigate(new Uri(..));
Ragunathan
Try to remove the search result page from back entry as belowthis.NavigationService.RemoveBackEntry()
Ragunathan
if needed you can add entry back "AddEntryBack"
Ragunathan