Inheritance: Windows.UI.Xaml.DependencyObject
Beispiel #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 public SelectProvider()
 {
     this.navigationHelper = new NavigationHelper(this);
     this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
     this.navigationHelper.SaveState += this.NavigationHelper_SaveState;
     this.InitializeComponent();
 }
Beispiel #2
0
 public settings2()
 {
     this.navigationHelper = new NavigationHelper(this);
     this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
     this.navigationHelper.SaveState += this.NavigationHelper_SaveState;
     this.InitializeComponent();
 }
Beispiel #3
0
 /// <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;
 }
Beispiel #4
0
 /// <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;
 }
Beispiel #5
0
        /// <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;
        }
Beispiel #6
0
        /// <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;
        }
Beispiel #7
0
        /// <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;
 }