private void UpdateText()
 {
     if (!string.IsNullOrEmpty(AppName))
     {
         RatingMessageTitle   = RatingMessageTitle.Replace("#MyApp#", AppName);
         RatingMessage        = RatingMessage.Replace("#MyApp#", AppName);
         RatingCancelText     = RatingCancelText.Replace("#MyApp#", AppName);
         RatingRemindText     = RatingRemindText.Replace("#MyApp#", AppName);
         RateText             = RateText.Replace("#MyApp#", AppName);
         FeedbackMessageTitle = FeedbackMessageTitle.Replace("#MyApp#", AppName);
         FeedbackMessage      = FeedbackMessage.Replace("#MyApp#", AppName);
         FeedbackCancelText   = FeedbackCancelText.Replace("#MyApp#", AppName);
         FeedbackText         = FeedbackText.Replace("#MyApp#", AppName);
     }
 }