in Clock.Desktop.Uwp/App.xaml.cs [74:83]
private void OnNavigating(object sender, NavigatingCancelEventArgs navigatingCancelEventArgs)
{
if (!(sender is Frame frame))
{
return;
}
frame.Content = Container.Resolve<Page>(navigatingCancelEventArgs.SourcePageType, navigatingCancelEventArgs.Parameter);
navigatingCancelEventArgs.Cancel = true;
}