Skip to content

Commit b5d0f26

Browse files
Merge pull request #4719 from CommunityToolkit/AnimationActivity(#4695)
Animation action changes
2 parents 967f5b7 + 2e578f7 commit b5d0f26

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Microsoft.Toolkit.Uwp.UI.Animations/Xaml/Activities/StopAnimationActivity.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public AnimationSet Animation
2929
public static readonly DependencyProperty AnimationProperty = DependencyProperty.Register(
3030
nameof(Animation),
3131
typeof(AnimationSet),
32-
typeof(StartAnimationActivity),
32+
typeof(StopAnimationActivity),
3333
new PropertyMetadata(null));
3434

3535
/// <summary>
@@ -47,7 +47,7 @@ public UIElement TargetObject
4747
public static readonly DependencyProperty TargetObjectProperty = DependencyProperty.Register(
4848
nameof(TargetObject),
4949
typeof(UIElement),
50-
typeof(StartAnimationActivity),
50+
typeof(StopAnimationActivity),
5151
new PropertyMetadata(null));
5252

5353
/// <inheritdoc/>

Microsoft.Toolkit.Uwp.UI.Behaviors/Animations/StartAnimationAction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public UIElement TargetObject
4747
public static readonly DependencyProperty TargetObjectProperty = DependencyProperty.Register(
4848
nameof(TargetObject),
4949
typeof(UIElement),
50-
typeof(StartAnimationActivity),
50+
typeof(StartAnimationAction),
5151
new PropertyMetadata(null));
5252

5353
/// <inheritdoc/>

0 commit comments

Comments
 (0)