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
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);