public static object GetBaseValue(this IDependencyPropertyValueEntry entry, int priority, bool flattened)
 {
     return(entry.GetValue(priority, flattened));
 }
 public static object GetAnimationValue(this IDependencyPropertyValueEntry entry, bool flattened)
 {
     return(entry.GetValue(DependencyPropertyValueEntry.AnimationValuePriority, flattened));
 }
 public object GetValue(bool flattened)
 {
     return(source.GetValue(source.ValuePriority, flattened));
 }