示例#1
0
        public static IFluentTemplateItem Bind(this IFluentTemplateItem templateItem, DependencyProperty property, string path, IValueConverter converter = null, object targetNullValue = null)
        {
            templateItem.Binding(property, path, converter, targetNullValue);

            return(templateItem);
        }
示例#2
0
        public static IFluentTemplateItem TemplateBinding(this IFluentTemplateItem templateItem, DependencyProperty property, DependencyProperty templateProperty, IValueConverter converter)
        {
            templateItem.Binding(property, templateProperty, converter);

            return(templateItem);
        }