I am trying to animate an image Clip that is made using a RectangleGeometry.
However, I can’t find any solution to do that. I have already reached the following conclusions:
- Windows metro doesn’t support RectAnimation (straight forward solution for this issue)
- Windows metro doesn’t support PathGeometry in Cliping (so I could do a workaround)
- Windows metro doesn’t have
RectAnimationUsingKeyFrames(another solution presented by Microsoft)
I ended up adding adding a Transform in the
RectangleGeometryand I animated it:I don’t know if there is a better solution, but this one was the one I found.