Example #1
0
 /// <summary>Bind to the default property</summary>
 public static TBindable Bind <TBindable>(
     this TBindable bindable,
     string path               = bindingContextPath,
     BindingMode mode          = BindingMode.Default,
     IValueConverter converter = null,
     object converterParameter = null,
     string stringFormat       = null,
     object source             = null,
     object targetNullValue    = null,
     object fallbackValue      = null) where TBindable : BindableObject
 {
     bindable.Bind(
         DefaultBindableProperties.GetFor(bindable),
         path, mode, converter, converterParameter, stringFormat, source, targetNullValue, fallbackValue);
     return(bindable);
 }
Example #2
0
        /// <summary>Bind to the default property with inline conversion</summary>
        public static TBindable Bind <TBindable, TSource, TDest>(
            this TBindable bindable,
            string path      = bindingContextPath,
            BindingMode mode = BindingMode.Default,
            Func <TSource, TDest> convert     = null,
            Func <TDest, TSource> convertBack = null,
            string stringFormat   = null,
            object source         = null,
            TDest targetNullValue = default,
            TDest fallbackValue   = default) where TBindable : BindableObject
        {
            var converter = new FuncConverter <TSource, TDest, object>(convert, convertBack);

            bindable.Bind(
                DefaultBindableProperties.GetFor(bindable),
                path, mode, converter, null, stringFormat, source, targetNullValue, fallbackValue);
            return(bindable);
        }