Inheritance: Windows.UI.Xaml.DependencyObject
Ejemplo n.º 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();
 }
Ejemplo n.º 2
0
 public settings2()
 {
     this.navigationHelper = new NavigationHelper(this);
     this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
     this.navigationHelper.SaveState += this.NavigationHelper_SaveState;
     this.InitializeComponent();
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 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;
        }
Ejemplo n.º 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;
        }
Ejemplo n.º 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;

        }
Ejemplo n.º 8
0
        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;
        }
Ejemplo n.º 9
0
 /// <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;
 }