WPF DoubleAnimation from CodeBehind



在主窗口中。我有这个:

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

我将Percentage绑定到一个从外部获取的值。问题是:它直接设置值,但我需要有一个DoubleAnimation从我现在的位置到我刚刚得到的值。

在我得到值的部分,我试图创建一个新的Storyboard和DoubleAnimation,但没有我尝试工作。我可以考虑创建一个新的DependencyProperty变量,它将是DoubleAnimated并将Percentage绑定到它。但是这个值将是双精度值,我不能将DoubleAnimation设置为通常的双精度值。我能在网上找到的只是一个对象的DpendencyProperty的DoubleAnimation。

然后我尝试在百分比值上做动画,但代码隐藏不识别它,VisualStudio建议创建一个新的DependencyProperty-variable。

目前我得到的是:

// 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:

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

TargetNameTargetProperty设置错误。从MSDN:

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

所以在你的情况下,TargetName将是speedoBar, TargetProperty将是Percentage,但你可以将Target直接设置为speedoBar,假设CircularProgressBar.PercentageDependencyProperty,下面的代码应该工作:

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

相关内容

  • 没有找到相关文章

最新更新