System.Windows.Media.Animation警告:6故事板问题

时间:2017-10-04 04:51:05

标签: wpf animation

在我的自定义控件中使用情节提要时,我遇到了警告问题。

我使用名为SelectorLooping的控件并使用故事板开始和停止。

我已经使用下面的SO链接中提到的Container进行了调用。

System.Windows.Media.Animation Warning: 6

但这对我的情况没有帮助。

if (animate)
{
    this.panelAnimation.Duration = duration;
    this.panelAnimation.EasingFunction = ease;
    this.panelAnimation.From = from;
    this.panelAnimation.To = to;
    this.panningTransform.Y = to;
    this.panelStoryboard.Begin(this,true);
    this.panelStoryboard.SeekAlignedToLastTick(TimeSpan.Zero);
}

this.panelStoryboard.Stop(this);

但是解决方案没有清除警告。

任何人都可以帮我这个吗?

1 个答案:

答案 0 :(得分:-1)

我找到了解决方案。

由于在调用Storyboard.Begin()之前调用了Storyboard.Stop(),会出现问题。

我已检查条件以跳过在Storyboard.Begin()之前调用的Storyboard.Stop()。我的问题解决了。

由于