Beispiel #1
0
 internal static void ApplyValue(DependencyObject target, PropertyPath propertyPath, object value, bool isVisualStateChange)
 {
     if (isVisualStateChange)
     {
         propertyPath.INTERNAL_PropertySetVisualState(target, value);
     }
     else
     {
         propertyPath.INTERNAL_PropertySetAnimationValue(target, value);
     }
 }