public Config() { this.InitializeComponent(); this.navigationHelper = new NavigationHelper(this); this.navigationHelper.LoadState += this.NavigationHelper_LoadState; this.navigationHelper.SaveState += this.NavigationHelper_SaveState; }
public PivotPage() { this.InitializeComponent(); this.navigationHelper = new NavigationHelper(this); //this.navigationHelper.LoadState += this.NavigationHelper_LoadState; //this.navigationHelper.SaveState += this.NavigationHelper_SaveState; }
public About() { this.InitializeComponent(); this.navigationHelper = new NavigationHelper(this); //this.navigationHelper.LoadState += this.NavigationHelper_LoadState; //this.navigationHelper.SaveState += this.NavigationHelper_SaveState; var myPackage = Windows.ApplicationModel.Package.Current; Windows.ApplicationModel.PackageVersion ver = myPackage.Id.Version; txtVersion.Text = "Version: " + ver.Major.ToString() + "." + ver.Minor.ToString() + "." + ver.Build.ToString() + "." + ver.Revision.ToString(); }