I use Modern UI framework, and I use page navigation feature
var bs = new BBCodeBlock();
try
{
bs.LinkNavigator.Navigate(new Uri("../SomePage.xaml", UriKind.Relative), this);
}
catch (Exception error)
{
ModernDialog.ShowMessage(error.Message, FirstFloor.ModernUI.Resources.NavigationFailed, MessageBoxButton.OK);
}
I would like to pass a certain parameter, say "A" to the navigated page and receive it over there.