If you use MainPage analogously to a MasterPage in ASP.NET you MainPage should have the APP Bar definitions, and should ONLY contain a Single Frame Element in the Body.
Using this pattern to set the content of the app instead of
Window.Current.Content = // An Application Page
use
AppFrame.Content = //An Application Page
Consider also, removing your Mainpage code from the MainPage element and placing it in a Custom User control, then you can bubble up an event from the userControl for the MainPage to Handle. It will also allow you to uise that funtionality in other places in the app without entirely re-creating the logic and UI.
Here is the Example XAML for MainPage:
>
<Page.Resources>
<ResourceDictionary x:Name="CommonStyles" Source="/Common/StandardStyles.xaml" />
</Page.Resources>
<Page.TopAppBar>
<AppBar x:Name="NavigationAppBar" Padding="10,0,10,0" AutomationProperties.Name="Global App Bar" >
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<StackPanel x:Name="LeftCommands" Orientation="Horizontal" Grid.Column="0" HorizontalAlignment="Left">
<!-- App Bar Buttons Removed -->
</StackPanel>
</Grid>
</AppBar>
</Page.TopAppBar>
<!--
This grid acts as a root panel for the page that defines two rows:
* Row 0 contains the back button and page title
* Row 1 contains the rest of the page layout
-->
Add a Public Property of Type Frame to the application View Model with a Getter and Setter
public Frame SelectedAppFrame {get;set;}
in the MainPage.xaml.cs file Assign an property:
ApplicationViewModel vm = this.PageBackgroundGrid.DataContext as ApplicationViewModel;
vm.SelectedAppFrame = this.AppFrame;
and the Code for generic Navigating In the App View Model is :
public void HandleNavigaitionEvent(object sender, string pageName, Frame AppFrame, StackPanel stack)
{
var content = Pages.Where(i => i.Name == pageName).FirstOrDefault();
NavigateTrigger(AppFrame, content);
}
public void NavigateTrigger(Frame AppFrame, LayoutAwarePage content)
{
EventAggregator.GetEvent<PageNavigatedEvent>().Publish(content);
AppFrame.Content = content;
NaviagationPath.Add(content);
}
That way you can Propgate the changes into the AppFram from anywhere in your application the the ApplicationViewModel is accessible from (Which should be everywhere).