Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public AnimationSet Animation
public static readonly DependencyProperty AnimationProperty = DependencyProperty.Register(
nameof(Animation),
typeof(AnimationSet),
typeof(StartAnimationAction),
typeof(StopAnimationAction),
new PropertyMetadata(null));

/// <summary>
Expand All @@ -47,7 +47,7 @@ public UIElement TargetObject
public static readonly DependencyProperty TargetObjectProperty = DependencyProperty.Register(
nameof(TargetObject),
typeof(UIElement),
typeof(StartAnimationActivity),
typeof(StopAnimationAction),
new PropertyMetadata(null));

/// <inheritdoc/>
Expand Down Expand Up @@ -78,4 +78,4 @@ public object Execute(object sender, object parameter)
static void ThrowArgumentNullException() => throw new ArgumentNullException(nameof(Animation));
}
}
}
}