private void FeedbackButton_Click(object sender, RoutedEventArgs e)
 {
     try
     {
         FeedbackView pop = new FeedbackView();
         pop.WindowStartupLocation = WindowStartupLocation.CenterScreen;
         pop.Show();
     }
     catch (Exception exception)
     {
         ErrorViewModel.Save(exception, GetType(), additionalInformation: Logger.Instance.getLoggedMessages());
     }
 }