示例#1
0
 public static void SetTextTrimming(GlassLabel source, TextTrimming value)
 {
     source.SetValue(TextTrimmingProperty, value);
 }
示例#2
0
 public static TextTrimming GetTextTrimming(GlassLabel source)
 {
     return((TextTrimming)source.GetValue(TextTrimmingProperty));
 }
示例#3
0
 public static void SetText(GlassLabel source, string value)
 {
     source.SetValue(TextProperty, value);
 }
示例#4
0
 public static string GetText(GlassLabel source)
 {
     return((string)source.GetValue(TextProperty));
 }
示例#5
0
 public static void SetIsGlassEnabled(GlassLabel source, bool value)
 {
     source.SetValue(IsGlassEnabledProperty, value);
 }
示例#6
0
 public static bool GetIsGlassEnabled(GlassLabel source)
 {
     return((bool)source.GetValue(IsGlassEnabledProperty));
 }