当前位置: 首页>>代码示例>>C#>>正文


C# Controls.FeedbackOverlay类代码示例

本文整理汇总了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")));
 }
开发者ID:rwecho,项目名称:Windows-Phone-Samples,代码行数:11,代码来源:MainPage.g.cs

示例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")));
 }
开发者ID:Epanum,项目名称:CurrencyConverter,代码行数:27,代码来源:MainPage.g.cs

示例3: SetEnableAnimation

 public static void SetEnableAnimation(FeedbackOverlay element, bool value)
 {
     element.SetValue(EnableAnimationProperty, value);
 }
开发者ID:arnaudmaichac,项目名称:rate-my-app,代码行数:4,代码来源:FeedbackOverlay.xaml.cs

示例4: SetLanguageOverride

 public static void SetLanguageOverride(FeedbackOverlay element, string value)
 {
     element.SetValue(LanguageOverrideProperty, value);
 }
开发者ID:arnaudmaichac,项目名称:rate-my-app,代码行数:4,代码来源:FeedbackOverlay.xaml.cs

示例5: GetCountDays

 public static bool GetCountDays(FeedbackOverlay element)
 {
     return (bool)element.GetValue(CountDaysProperty);
 }
开发者ID:arnaudmaichac,项目名称:rate-my-app,代码行数:4,代码来源:FeedbackOverlay.xaml.cs

示例6: GetSecondCount

 public static int GetSecondCount(FeedbackOverlay element)
 {
     return (int)element.GetValue(SecondCountProperty);
 }
开发者ID:arnaudmaichac,项目名称:rate-my-app,代码行数:4,代码来源:FeedbackOverlay.xaml.cs

示例7: GetFirstCount

 public static int GetFirstCount(FeedbackOverlay element)
 {
     return (int)element.GetValue(FirstCountProperty);
 }
开发者ID:arnaudmaichac,项目名称:rate-my-app,代码行数:4,代码来源:FeedbackOverlay.xaml.cs

示例8: GetApplicationName

 public static string GetApplicationName(FeedbackOverlay element)
 {
     return (string)element.GetValue(ApplicationNameProperty);
 }
开发者ID:arnaudmaichac,项目名称:rate-my-app,代码行数:4,代码来源:FeedbackOverlay.xaml.cs

示例9: GetRatingNo

 public static string GetRatingNo(FeedbackOverlay element)
 {
     return (string)element.GetValue(RatingNoProperty);
 }
开发者ID:arnaudmaichac,项目名称:rate-my-app,代码行数:4,代码来源:FeedbackOverlay.xaml.cs

示例10: SetRatingNo

 public static void SetRatingNo(FeedbackOverlay element, string value)
 {
     element.SetValue(RatingNoProperty, value);
 }
开发者ID:arnaudmaichac,项目名称:rate-my-app,代码行数:4,代码来源:FeedbackOverlay.xaml.cs

示例11: GetIsNotVisible

 public static bool GetIsNotVisible(FeedbackOverlay element)
 {
     return (bool)element.GetValue(IsNotVisibleProperty);
 }
开发者ID:arnaudmaichac,项目名称:rate-my-app,代码行数:4,代码来源:FeedbackOverlay.xaml.cs

示例12: SetIsNotVisible

 public static void SetIsNotVisible(FeedbackOverlay element, bool value)
 {
     element.SetValue(IsNotVisibleProperty, value);
 }
开发者ID:arnaudmaichac,项目名称:rate-my-app,代码行数:4,代码来源:FeedbackOverlay.xaml.cs

示例13: GetAnimationDuration

 public static TimeSpan GetAnimationDuration(FeedbackOverlay element)
 {
     return (TimeSpan)element.GetValue(AnimationDurationProperty);
 }
开发者ID:arnaudmaichac,项目名称:rate-my-app,代码行数:4,代码来源:FeedbackOverlay.xaml.cs

示例14: SetAnimationDuration

 public static void SetAnimationDuration(FeedbackOverlay element, TimeSpan value)
 {
     element.SetValue(AnimationDurationProperty, value);
 }
开发者ID:arnaudmaichac,项目名称:rate-my-app,代码行数:4,代码来源:FeedbackOverlay.xaml.cs

示例15: GetCompanyName

 public static string GetCompanyName(FeedbackOverlay element)
 {
     return (string)element.GetValue(CompanyNameProperty);
 }
开发者ID:arnaudmaichac,项目名称:rate-my-app,代码行数:4,代码来源:FeedbackOverlay.xaml.cs


注:本文中的RateMyApp.Controls.FeedbackOverlay类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。