Skip to content

Commit 2bf8fcf

Browse files
committedMar 21, 2018
Merge branch 'docs'
2 parents cfec147 + 8df6bde commit 2bf8fcf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎windows-apps-src/composition/time-animations.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Then we will define the properties of the KeyFrameAnimation to describe it’s d
9696
Finally, in order to run an animation, you need to start it on a property of a CompositionObject.
9797

9898
```csharp
99-
redVisual.StartAnimation("Translation", animation);
99+
redVisual.StartAnimation("Offset.X", animation);
100100
```
101101

102102
Here's the full code.
@@ -110,6 +110,6 @@ private void AnimateSquare(Compositor compositor, SpriteVisual redSquare)
110110
    animation.Direction = Windows.UI.Composition.AnimationDirection.Alternate;
111111
    // Run animation for 10 times
112112
    animation.IterationCount = 10;
113-
    visual.StartAnimation("Translation", animation);
113+
    visual.StartAnimation("Offset.X", animation);
114114
115-
```
115+
```

0 commit comments

Comments
 (0)
Please sign in to comment.