将动画持续时间绑定到滑块

时间:2013-07-20 13:10:27

标签: silverlight windows-phone-7 animation data-binding

在我的主页上我有

<DoubleAnimation Completed="DoubleAnimation_Completed_1" 
            Storyboard.TargetName="factImage"
            Storyboard.TargetProperty="Opacity"
            From="0.0" To="1.0" Duration="0:0:0.3"
            AutoReverse="False"/>

我希望将其绑定到设置页面上的滑块,而不是硬编码 Duration =“0:0:0.3”

1 个答案:

答案 0 :(得分:0)

您可以使用两个页面都使用的ViewModel。

例如,您可以拥有一个Duration属性的ViewModel,该属性由Settings页面通过绑定设置,但也会绑定到MaingPage中的动画。