public GifPage()
 {
     this.InitializeComponent();
     _navigationHelper = new NavigationHelper(this);
     timer = new DispatcherTimer();
     timer.Interval = new TimeSpan(0, 0, 0, 0, 100);
     timer.Tick += Timer_Tick;
 }
        public SequencePreviewPage()
        {
            this.InitializeComponent();

            _animationTimer = new DispatcherTimer();
            _animationTimer.Tick += AnimationTimer_Tick;
            _animationTimer.Interval = new TimeSpan(0, 0, 0, 0, 100);

            _navigationHelper = new NavigationHelper(this);

            // Hide page header on landscape orientation
            Window.Current.SizeChanged += ((s, e) => { Header.Visibility = (e.Size.Width > e.Size.Height) ? Visibility.Collapsed : Visibility.Visible; });
            Header.Visibility = Window.Current.Bounds.Width > Window.Current.Bounds.Height ? Visibility.Collapsed : Visibility.Visible;
        }
        public VideoPreviewCapturePage()
        {
            this.InitializeComponent();

            _navigationHelper = new NavigationHelper(this);
        }
        public SequenceCapturePage()
        {
            this.InitializeComponent();

            _navigationHelper = new NavigationHelper(this);
        }
        public AboutPage()
        {
            this.InitializeComponent();

            _navigationHelper = new NavigationHelper(this);
        }