An empty page that can be used on its own or navigated to within a Frame.
Inheritance: Windows.UI.Xaml.Controls.Page, IFileOpenPickerContinuable
        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;
        }
        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;
        }