Skip to content

Commit 7b4acf3

Browse files
committed
Renamed AnimationSet trigger behaviors
1 parent 749ccc7 commit 7b4acf3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Microsoft.Toolkit.Uwp.UI.Behaviors/Animations/AnimationEndBehavior.cs renamed to Microsoft.Toolkit.Uwp.UI.Behaviors/Animations/AnimationCompletedTriggerBehavior.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
namespace Microsoft.Toolkit.Uwp.UI.Behaviors
1111
{
1212
/// <summary>
13-
/// A custom <see cref="Trigger"/> that fires whenever a linked <see cref="AnimationSet"/> ends.
13+
/// A custom <see cref="Trigger"/> that fires whenever a linked <see cref="AnimationSet"/> completes.
1414
/// </summary>
15-
public sealed class AnimationEndBehavior : Trigger<AnimationSet>
15+
public sealed class AnimationCompletedTriggerBehavior : Trigger<AnimationSet>
1616
{
1717
/// <summary>
1818
/// The current <see cref="AnimationSet"/> instance in use.

Microsoft.Toolkit.Uwp.UI.Behaviors/Animations/AnimationStartBehavior.cs renamed to Microsoft.Toolkit.Uwp.UI.Behaviors/Animations/AnimationStartedTriggerBehavior.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace Microsoft.Toolkit.Uwp.UI.Behaviors
1212
/// <summary>
1313
/// A custom <see cref="Trigger"/> that fires whenever a linked <see cref="AnimationSet"/> starts.
1414
/// </summary>
15-
public sealed class AnimationStartBehavior : Trigger<AnimationSet>
15+
public sealed class AnimationStartedTriggerBehavior : Trigger<AnimationSet>
1616
{
1717
/// <summary>
1818
/// The current <see cref="AnimationSet"/> instance in use.

0 commit comments

Comments
 (0)