Add an overload for the NavigationState.Navigate method that accept a user defined parameter.
This parameter is useful when you want to include your page state into the navigation history.
public bool Navigate(
Type sourcePageType,
object parameter
)
Comments: ** Comment from web user: mglukhankov **
This parameter is useful when you want to include your page state into the navigation history.
public bool Navigate(
Type sourcePageType,
object parameter
)
Comments: ** Comment from web user: mglukhankov **
I'm working on this issue.
Basically I have an implementation already.
The IPageModel interface is extended and its methods are renamed to match Page methods.
I'm not sure which notification methods should be called during SetNavigationState, GetNavigationState and Reset methods' calls. I'm trying to mimic the Page behavior.