在我的主页上我有
<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”。
答案 0 :(得分:0)
您可以使用两个页面都使用的ViewModel。
例如,您可以拥有一个Duration
属性的ViewModel,该属性由Settings
页面通过绑定设置,但也会绑定到MaingPage
中的动画。