void SetTypeface(MvvmAspire.Controls.FormattedLabelChild element)
 {
     if (!string.IsNullOrEmpty(element.FontFamily))
     {
         var label = (TextView)Control;
         label.Typeface = FontCache.GetTypeFace(element.FontFamily);
     }
 }
 public FormattedLabelChild GetFormattedElement()
 {
     MvvmAspire.Controls.FormattedLabelChild test = Base;
     return(Base);
 }