Advertisement
Guest User

Untitled

a guest
Jan 7th, 2013
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. if (!Settings.appSettings.Contains("SetupDone")) //if it is the first time the app launches, go to Fpage
  2. {
  3. NavigationService.Navigate(new Uri("Fpage", UriKind.Relative));
  4. }
  5. else //else go to Calculations
  6. {
  7. Calculations();
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement