Inheritance: Windows.UI.Xaml.DependencyObject
 /// <summary>
 /// Public Construtor to the ScorePage. Populates the views pertaining to this page.
 /// </summary>
 public ScorePage()
 {
     this.InitializeComponent();
     this.navigationHelper = new NavigationHelper(this);
     this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
     this.navigationHelper.SaveState += this.NavigationHelper_SaveState;
 }
 /// <summary>
 /// Public Constructor to the Details Page.
 /// </summary>
 public AppDetailsPage()
 {
     this.InitializeComponent();
     AppCommon.RegisterForShare();
     this.navigationHelper = new NavigationHelper(this);
     this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
     this.navigationHelper.SaveState += this.NavigationHelper_SaveState;
 }