/// <summary>
        /// Represents the default constructor for the page.
        /// Initializes the navigator helper and subscribe to key events.
        /// </summary>
        public JobListPage()
        {
            this.InitializeComponent();
            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += navigationHelper_LoadState;

            // Register a handler for the Window Size Changed event
            Window.Current.SizeChanged += Window_SizeChanged;
        }
 public JobDetailPage()
 {
     this.InitializeComponent();
     this.navigationHelper = new NavigationHelper(this);
     this.navigationHelper.LoadState += navigationHelper_LoadState;
 }
 public EquipmentDetails()
 {
     this.InitializeComponent();
     this.navigationHelper = new NavigationHelper(this);
     this.navigationHelper.LoadState += navigationHelper_LoadState;
 }