Animate Clip rect高度和宽度

时间:2014-07-14 15:11:04

标签: windows-runtime windows-store-apps winrt-xaml win-universal-app

我需要使用Story为Clip Rect的Heigth和Width设置动画,如果我写下面代码

        <DoubleAnimationUsingKeyFrames EnableDependentAnimation="True" Storyboard.TargetProperty="(UIElement.Clip).(RectangleGeometry.Rect).Height" Storyboard.TargetName="ellipse">
            <EasingDoubleKeyFrame KeyTime="0:0:1" Value="55"/>
        </DoubleAnimationUsingKeyFrames>

Designer崩溃并说无法解析TargetProperty(UIElement.Clip)。(RectangleGeometry.Rect).Height。

如何克服这个!!!

提前致谢。

1 个答案:

答案 0 :(得分:2)

设置其宽度/高度的动画并不是最好的主意,因为它们是依赖属性。我会在ScaleTransform上使用RectangleGeometry并为其制作动画。您应该能够命名变换并直接定位变换,而不是使用复杂的目标属性路径。如果这不起作用 - 我会在代码中设置目标。