本文整理汇总了C#中RateMyApp.Controls.FeedbackOverlay类的典型用法代码示例。如果您正苦于以下问题:C# FeedbackOverlay类的具体用法?C# FeedbackOverlay怎么用?C# FeedbackOverlay使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
FeedbackOverlay类属于RateMyApp.Controls命名空间,在下文中一共展示了FeedbackOverlay类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: InitializeComponent
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Windows.Application.LoadComponent(this, new System.Uri("/Ejemplo%20RateMyApp;component/MainPage.xaml", System.UriKind.Relative));
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
this.FeedbackOverlay = ((RateMyApp.Controls.FeedbackOverlay)(this.FindName("FeedbackOverlay")));
}
示例2: InitializeComponent
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Windows.Application.LoadComponent(this, new System.Uri("/ValutaOmregner;component/MainPage.xaml", System.UriKind.Relative));
this.CurrencyFromChanged = ((System.Windows.Media.Animation.Storyboard)(this.FindName("CurrencyFromChanged")));
this.CurrencyToChanged = ((System.Windows.Media.Animation.Storyboard)(this.FindName("CurrencyToChanged")));
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
this.ApplicationTitle = ((System.Windows.Controls.TextBlock)(this.FindName("ApplicationTitle")));
this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
this.dropdownListFra = ((System.Windows.Controls.Grid)(this.FindName("dropdownListFra")));
this.imgDropDownFra = ((System.Windows.Controls.Image)(this.FindName("imgDropDownFra")));
this.txtDropdownFra = ((System.Windows.Controls.TextBlock)(this.FindName("txtDropdownFra")));
this.dropdownListTil = ((System.Windows.Controls.Grid)(this.FindName("dropdownListTil")));
this.imgDropDownTil = ((System.Windows.Controls.Image)(this.FindName("imgDropDownTil")));
this.txtDropdownTil = ((System.Windows.Controls.TextBlock)(this.FindName("txtDropdownTil")));
this.image4 = ((System.Windows.Controls.Image)(this.FindName("image4")));
this.txtInputText1 = ((System.Windows.Controls.TextBox)(this.FindName("txtInputText1")));
this.image5 = ((System.Windows.Controls.Image)(this.FindName("image5")));
this.btnChangeUpDown = ((System.Windows.Controls.Button)(this.FindName("btnChangeUpDown")));
this.txtInputText2 = ((System.Windows.Controls.TextBlock)(this.FindName("txtInputText2")));
this.image2 = ((System.Windows.Controls.Image)(this.FindName("image2")));
this.textBlock2 = ((System.Windows.Controls.TextBlock)(this.FindName("textBlock2")));
this.FeedbackOverlay = ((RateMyApp.Controls.FeedbackOverlay)(this.FindName("FeedbackOverlay")));
}
示例3: SetEnableAnimation
public static void SetEnableAnimation(FeedbackOverlay element, bool value)
{
element.SetValue(EnableAnimationProperty, value);
}
示例4: SetLanguageOverride
public static void SetLanguageOverride(FeedbackOverlay element, string value)
{
element.SetValue(LanguageOverrideProperty, value);
}
示例5: GetCountDays
public static bool GetCountDays(FeedbackOverlay element)
{
return (bool)element.GetValue(CountDaysProperty);
}
示例6: GetSecondCount
public static int GetSecondCount(FeedbackOverlay element)
{
return (int)element.GetValue(SecondCountProperty);
}
示例7: GetFirstCount
public static int GetFirstCount(FeedbackOverlay element)
{
return (int)element.GetValue(FirstCountProperty);
}
示例8: GetApplicationName
public static string GetApplicationName(FeedbackOverlay element)
{
return (string)element.GetValue(ApplicationNameProperty);
}
示例9: GetRatingNo
public static string GetRatingNo(FeedbackOverlay element)
{
return (string)element.GetValue(RatingNoProperty);
}
示例10: SetRatingNo
public static void SetRatingNo(FeedbackOverlay element, string value)
{
element.SetValue(RatingNoProperty, value);
}
示例11: GetIsNotVisible
public static bool GetIsNotVisible(FeedbackOverlay element)
{
return (bool)element.GetValue(IsNotVisibleProperty);
}
示例12: SetIsNotVisible
public static void SetIsNotVisible(FeedbackOverlay element, bool value)
{
element.SetValue(IsNotVisibleProperty, value);
}
示例13: GetAnimationDuration
public static TimeSpan GetAnimationDuration(FeedbackOverlay element)
{
return (TimeSpan)element.GetValue(AnimationDurationProperty);
}
示例14: SetAnimationDuration
public static void SetAnimationDuration(FeedbackOverlay element, TimeSpan value)
{
element.SetValue(AnimationDurationProperty, value);
}
示例15: GetCompanyName
public static string GetCompanyName(FeedbackOverlay element)
{
return (string)element.GetValue(CompanyNameProperty);
}