/// <summary> /// Constructor /// </summary> public SelectProvider() { this.navigationHelper = new NavigationHelper(this); this.navigationHelper.LoadState += this.NavigationHelper_LoadState; this.navigationHelper.SaveState += this.NavigationHelper_SaveState; this.InitializeComponent(); }
public settings2() { this.navigationHelper = new NavigationHelper(this); this.navigationHelper.LoadState += this.NavigationHelper_LoadState; this.navigationHelper.SaveState += this.NavigationHelper_SaveState; this.InitializeComponent(); }
/// <summary> /// Constructor /// </summary> public NetworkError() { this.InitializeComponent(); this.NavigationCacheMode = NavigationCacheMode.Required; this.navigationHelper = new NavigationHelper(this); this.navigationHelper.LoadState += this.NavigationHelper_LoadState; this.navigationHelper.SaveState += this.NavigationHelper_SaveState; }
/// <summary> /// Constructor /// </summary> public URLPage() { this.InitializeComponent(); Current = this; this.navigationHelper = new NavigationHelper(this); this.navigationHelper.LoadState += this.NavigationHelper_LoadState; this.navigationHelper.SaveState += this.NavigationHelper_SaveState; }
/// <summary> /// Constructor /// </summary> public SelectDomain() { this.InitializeComponent(); Current = this; this.NavigationCacheMode = NavigationCacheMode.Required; this.navigationHelper = new NavigationHelper(this); this.navigationHelper.LoadState += this.NavigationHelper_LoadState; this.navigationHelper.SaveState += this.NavigationHelper_SaveState; }
/// <summary> /// Constructor /// </summary> public OptionsPage() { InitializeComponent(); Current = this; this.NavigationCacheMode = NavigationCacheMode.Required; this.navigationHelper = new NavigationHelper(this); this.navigationHelper.LoadState += this.NavigationHelper_LoadState; this.navigationHelper.SaveState += this.NavigationHelper_SaveState; }
/// <summary> /// Constructor /// </summary> public MainPage() { this.InitializeComponent(); Current = this; Window.Current.VisibilityChanged += CurrentWindow_VisibilityChanged; this.NavigationCacheMode = NavigationCacheMode.Required; this.navigationHelper = new NavigationHelper(this); this.navigationHelper.LoadState += this.NavigationHelper_LoadState; this.navigationHelper.SaveState += this.NavigationHelper_SaveState; }
public PhotoLibraryResults() { this.InitializeComponent(); timer.Interval = TimeSpan.FromMilliseconds(100); timer.Tick += ContinuousUpdate; this.navigationHelper = new NavigationHelper(this); this.navigationHelper.LoadState += this.NavigationHelper_LoadState; this.navigationHelper.SaveState += this.NavigationHelper_SaveState; Current = this; }
/// <summary> /// Constructor /// </summary> public RecogResultPage() { this.InitializeComponent(); this.navigationHelper = new NavigationHelper(this); this.navigationHelper.LoadState += this.NavigationHelper_LoadState; this.navigationHelper.SaveState += this.NavigationHelper_SaveState; Application.Current.Resuming += new EventHandler<object>(App_Resuming); Windows.Phone.UI.Input.HardwareButtons.BackPressed += HardwareButtons_BackPressed; Current = this; Window.Current.VisibilityChanged += CurrentWindow_VisibilityChanged; currentPage = Current; }