Code Behind的WPF DoubleAnimation

时间:2014-05-09 13:40:54

标签: c# wpf wpf-animation doubleanimation

在MainWindow.xaml中我有这个:

<view:CircularProgressBar Percentage="25"
                          ...
                          x:Name="speedoBar"/>

我的百分比限制在我从外面得到的值。问题是:它直接设置了值,但我需要一个DoubleAnimation,从我现在的位置到我刚刚得到的值。

在我得到价值的部分,我试图创建一个新的Storyboard和DoubleAnimation,但我尝试的任何东西都没有。 我可以考虑创建一个新的DependencyProperty变量,它将是DoubleAnimated并将Percentage绑定到它。但是这个值将是一个双倍,我无法启动DoubleAnimation到通常的双值。我在互联网上找到的只是对象的DpendencyProperty的DoubleAnimation。

然后我尝试对百分比值进行动画,但代码隐藏无法识别它,VisualStudio建议创建一个新的DependencyProperty变量。

到目前为止我所拥有的是:

// get the old value
speedCopy = speedoBar.Percentage;

DoubleAnimation speedDoubleAni =
new DoubleAnimation(speedCopy, (double)(vehicleDataViewModel.Speed), new Duration(new TimeSpan(0, 0, 10)));

Storyboard.SetTargetName(speedDoubleAni, "speedoBar.Percentage");
Storyboard.SetTargetProperty(speedDoubleAni, new PropertyPath(DoubleAnimation.ByProperty));

Storyboard story = new Storyboard();
story.Children.Add(speedDoubleAni);
story.Begin();

但是它不起作用并在story.Begin();显示错误,这意味着找出真正的问题更难以找到D:

那你怎么会这样做呢?我在这里做错了什么?

1 个答案:

答案 0 :(得分:1)

您将TargetNameTargetProperty设置为错误的值。来自MSDN

  • TargetName:获取或设置要设置动画的对象名称。该对象必须是FrameworkElement,FrameworkContentElement或Freezable。
  • TargetProperty:获取或设置应设置动画的属性

因此,在您的情况下,TargetName将是speedoBarTargetProperty将是Percentage,但您可以将Target直接设置为speedoBar,并且假设CircularProgressBar.PercentageDependencyProperty,则下面的代码应该有效:

Storyboard.SetTarget(speedDoubleAni, speedoBar);
Storyboard.SetTargetProperty(speedDoubleAni, new PropertyPath("Percentage"));