public ItemPage() { this.InitializeComponent(); this.navigationHelper = new NavigationHelper(this); this.navigationHelper.LoadState += navigationHelper_LoadState; this.navigationHelper.SaveState += navigationHelper_SaveState; }
public MainPage() { InitializeComponent(); instance = this; navigationHelper = new NavigationHelper(this); navigationHelper.LoadState += this.NavigationHelper_LoadState; navigationHelper.SaveState += this.NavigationHelper_SaveState; NavigationCacheMode = NavigationCacheMode.Required; }
public PrivacyPolicy() { this.InitializeComponent(); this.navigationHelper = new NavigationHelper(this); this.navigationHelper.LoadState += this.NavigationHelper_LoadState; this.navigationHelper.SaveState += this.NavigationHelper_SaveState; _checkedGoBackCommand = new RelayCommand( () => this.CheckGoBack(), () => this.CanCheckGoBack() ); navigationHelper.GoBackCommand = _checkedGoBackCommand; }
public ItemPage() { this.InitializeComponent(); this.navigationHelper = new NavigationHelper(this); this.navigationHelper.LoadState += this.NavigationHelper_LoadState; this.navigationHelper.SaveState += this.NavigationHelper_SaveState; _checkedGoBackCommand = new RelayCommand( () => this.CheckGoBack(), () => this.CanCheckGoBack() ); navigationHelper.GoBackCommand = _checkedGoBackCommand; RefreshPage = true; }