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

            AboutAppModel = new AboutAppViewModel();
            DataContext = this;

            SizeChanged += OnSizeChanged;
        }
        public AboutAppPage()
        {
            this.InitializeComponent();
            _navigationHelper = new NavigationHelper(this);

            AboutAppModel = new AboutAppViewModel();
            DataContext = this;

            ApplicationView.GetForCurrentView().
                SetDesiredBoundsMode(ApplicationViewBoundsMode.UseVisible);
        }