Example #1
0
 public static XamlService RegisterContentProperty(this XamlService service, Func <object, object, bool> shouldUseFilter, RegisterPriority priority) => service.RegisterContentProperty <object, object>(shouldUseFilter, priority);
Example #2
0
 public static XamlService RegisterContentProperty(this XamlService service, Type property, RegisterPriority priority)
 {
     service.RegisterContentProperty <object>(RegisterPriority.Highest);
     return(service);
 }
Example #3
0
 public static XamlService RegisterContentProperty <T, TParent>(this XamlService service, RegisterPriority priority) => service.RegisterContentProperty(typeof(T), typeof(TParent), priority);