private void btnAddToFavorites_Click(object sender, RoutedEventArgs e)
 {
     if (BAMessageBox.Ask(string.Format(ApplicationStrings.ProfileInfoPage_QAddToFavorites, viewModel.UserName)) == MessageBoxResult.Cancel)
     {
         return;
     }
     progressBar.ShowProgress(true, ApplicationStrings.ProfileInfoPage_ProgressSend);
     viewModel.AddToFavorites();
 }