In the properties of 'MainPage.xaml' go to the 'Events' tab.
Find the 'Loaded' event and double click it. You'll find yourself in 'MainPage.xaml.cs' with a method created as:
private void MainPage_Loaded(object sender, RoutedEventArgs e)
{
//Some code may already be written
}
Now depending on the state you saved in your settings page you can have a conditional statement within the 'MainPage_Loaded' method as:
if(condition1)
{
NavigateService.Navigate(new Uri("/Today.xaml",UriKind.Relative));
}
else if(condition2)
{
// Navigate to a different Uri
}
This will navigate the user directly to the next page.
After that, I believe you'd want the application to exit if back button is pressed and not go to the previous page. For this you'll have to put the following code in the 'Loaded' method of the page you just navigated to:
while (NavigationService.BackStack.Any())
{
NavigationService.RemoveBackEntry();
}
This clears the BackStack of the application and allows application to exit if the back button is pressed.