System.Windows.Media.Animation Warning: 6

前端 未结 1 866
盖世英雄少女心
盖世英雄少女心 2020-12-21 15:24

When I run animation in wpf using storyboard I am getting following error in output window.

System.Windows.Media.Animation Warning: 6 : Unable to perf

相关标签:
1条回答
  • 2020-12-21 15:45

    I too had this warning, but found that the 'containingElement' specified in the Begin call must also be specified in the Stop call, which should eliminate the warning.

    this.storyboard1.Begin(this.viewbox1, true);
    
    this.storyboard1.Stop(this.viewbox1);
    
    0 讨论(0)
提交回复
热议问题