public AboutPage()
        {
            AboutThisAppModel = new AboutThisAppViewModel();

            this.InitializeComponent();
            new Microsoft.ApplicationInsights.TelemetryClient().TrackPageView(this.GetType().FullName);
        }
 public AboutThisAppPage()
 {
     AboutModel = new AboutThisAppViewModel();
     this.InitializeComponent();
 }
 public AboutFlyout()
 {
     AboutThisAppModel = new AboutThisAppViewModel();
     this.DataContext = this;
     this.InitializeComponent();
 }