public static T Bind <T>(this T element, IMvxTouchView touchView,
                          IEnumerable <MvxBindingDescription> descriptions)
 {
     touchView.AddBindings(element, descriptions);
     return(element);
 }
 public static T Bind <T>(this T element, IMvxTouchView touchView, string descriptionText)
 {
     touchView.AddBindings(element, descriptionText);
     return(element);
 }