Silverlight 中 DoubleAnimation 的实际/当前值

发布于 2024-12-11 22:19:09 字数 314 浏览 0 评论 0原文

我想获取 Silverlight 4.0 中动画属性的实际值

我想对 ScaleTransform ScaleX 属性进行动画处理,并在停止 Storyboard 时需要实际值。

我也尝试过:http://haishibai。 blogspot.com/2010/09/siliverlight-on-windows-phone-7-get.html 但它不起作用!

I'd like to get the Actual Value of an Animated property in Silverlight 4.0

I'd like to animate a ScaleTransform ScaleX Property and need the actual Value when i stop the Storyboard.

I also tryed this: http://haishibai.blogspot.com/2010/09/siliverlight-on-windows-phone-7-get.html but it did not work!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

才能让你更想念 2024-12-18 22:19:09

我能够使用以下内容获取 RenderTransform 的当前 Rotation 属性

var x = needle.RenderTransform.GetValue(CompositeTransform.RotationProperty);

,因此我猜您只需将 RotationProperty 替换为 ScaleXProperty 即可,

其中needle =

   <ed:RegularPolygon Name="needle" Height="81.5" InnerRadius="1" Canvas.Left="78" PointCount="3" Stretch="Fill" Stroke="Black" Canvas.Top="17.5" UseLayoutRounding="False" Width="15" Fill="#FFFFBB00" StrokeThickness="0" RenderTransformOrigin="0.5,0.838" >
            <ed:RegularPolygon.RenderTransform>
                <CompositeTransform Rotation="-140"/>
            </ed:RegularPolygon.RenderTransform>
        </ed:RegularPolygon>

I was able to get the currennt Rotation property of a RenderTransform with the following

var x = needle.RenderTransform.GetValue(CompositeTransform.RotationProperty);

so I guess you just replace RotationProperty with ScaleXProperty

where needle =

   <ed:RegularPolygon Name="needle" Height="81.5" InnerRadius="1" Canvas.Left="78" PointCount="3" Stretch="Fill" Stroke="Black" Canvas.Top="17.5" UseLayoutRounding="False" Width="15" Fill="#FFFFBB00" StrokeThickness="0" RenderTransformOrigin="0.5,0.838" >
            <ed:RegularPolygon.RenderTransform>
                <CompositeTransform Rotation="-140"/>
            </ed:RegularPolygon.RenderTransform>
        </ed:RegularPolygon>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文