public static void SetLanguageOverride(FeedbackOverlay element, string value)
 {
     element.SetValue(LanguageOverrideProperty, value);
 }
 public static void SetCountDays(FeedbackOverlay element, bool value)
 {
     element.SetValue(CountDaysProperty, value);
 }
 public static bool GetCountDays(FeedbackOverlay element)
 {
     return((bool)element.GetValue(CountDaysProperty));
 }
 public static void SetRatingTitle(FeedbackOverlay element, string value)
 {
     element.SetValue(RatingTitleProperty, value);
 }
 public static int GetSecondCount(FeedbackOverlay element)
 {
     return((int)element.GetValue(SecondCountProperty));
 }
 public static void SetRatingMessage2(FeedbackOverlay element, string value)
 {
     element.SetValue(RatingMessage2Property, value);
 }
 public static string GetFeedbackMessage1(FeedbackOverlay element)
 {
     return((string)element.GetValue(FeedbackMessage1Property));
 }
 public static string GetCompanyName(FeedbackOverlay element)
 {
     return((string)element.GetValue(CompanyNameProperty));
 }
 public static void SetApplicationName(FeedbackOverlay element, string value)
 {
     element.SetValue(ApplicationNameProperty, value);
 }
Exemplo n.º 10
0
 public static string GetFeedbackBody(FeedbackOverlay element)
 {
     return((string)element.GetValue(FeedbackBodyProperty));
 }
Exemplo n.º 11
0
 public static void SetCompanyName(FeedbackOverlay element, string value)
 {
     element.SetValue(CompanyNameProperty, value);
 }
Exemplo n.º 12
0
 public static void SetFeedbackBody(FeedbackOverlay element, string value)
 {
     element.SetValue(FeedbackBodyProperty, value);
 }
Exemplo n.º 13
0
 public static string GetFeedbackSubject(FeedbackOverlay element)
 {
     return((string)element.GetValue(FeedbackSubjectProperty));
 }
Exemplo n.º 14
0
 public static void SetFeedbackSubject(FeedbackOverlay element, string value)
 {
     element.SetValue(FeedbackSubjectProperty, value);
 }
Exemplo n.º 15
0
 public static string GetLanguageOverride(FeedbackOverlay element)
 {
     return((string)element.GetValue(LanguageOverrideProperty));
 }
Exemplo n.º 16
0
 public static string GetApplicationName(FeedbackOverlay element)
 {
     return((string)element.GetValue(ApplicationNameProperty));
 }
Exemplo n.º 17
0
 public static string GetRatingTitle(FeedbackOverlay element)
 {
     return((string)element.GetValue(RatingTitleProperty));
 }
Exemplo n.º 18
0
 public static void SetSecondCount(FeedbackOverlay element, int value)
 {
     element.SetValue(SecondCountProperty, value);
 }
Exemplo n.º 19
0
 public static string GetRatingMessage2(FeedbackOverlay element)
 {
     return((string)element.GetValue(RatingMessage2Property));
 }
Exemplo n.º 20
0
 public static void SetFeedbackMessage1(FeedbackOverlay element, string value)
 {
     element.SetValue(FeedbackMessage1Property, value);
 }