Why does the method Navigate not work when called in the OnNavigatedTo event of this page?
Is this behavior reproducible for you?
Any ideas how to avoid this pro
To get the right behavior I am now using the dispatcher:
this->Dispatcher->RunAsync(Windows::UI::Core::CoreDispatcherPriority::Normal, ref new Windows::UI::Core::DispatchedHandler([this] () { this->Frame->Navigate(Windows::UI::Xaml::Interop::TypeName(AnotherPage::typeid)); }));