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); }
public static IFluentTemplateItem TemplateBinding(this IFluentTemplateItem templateItem, DependencyProperty property, DependencyProperty templateProperty, IValueConverter converter) { templateItem.Binding(property, templateProperty, converter); return(templateItem); }