I am looking for any best practices or guidelines regarding animation in WPF. Especially information regarding performance considerations.
feedback
|
|
After I have gained a bit more experience in this field since I have asked the question, I will answer this myself. My experience comes from working on the WPF mind mapping application NovaMind - We have done lots of animations lately for our Presenter feature in NovaMind Platinum :-) The MSDN section on Optimizing WPF Application Performance has some useful information about general considerations when writing WPF apps: http://msdn.microsoft.com/en-us/library/aa970683.aspx Here are some bits which I have found especially useful and are related to animation:
Here is what I have learned through trial and error:
I have also heard that it is faster to render many little objects by overriding OnRender in the container and then rendering them using the drawingContext rather than adding them to the visual tree directly. In practice this didn't make any difference in my scenario (when rendering around 300 ellipse geometries) but it might be helpful in some scenarios. The theory sounds solid. Finally, I have found the animation classes built into WPF way to cumbersome and had much more fun and success using the underdog of animation libraries: Artefact Animator. Seriously, give it a try. (it is also available for Silverlight) It is what animating (in code) should have been like. All is not rainbows and unicorns though. I still find it impossible to create truly fluid animations when running full screen in higher resolutions. More on that in my question How to know why an animation stutters? - I would appreciate any input on that. cheers, good luck and if you have something cool to show, let me know :) | ||||
|
feedback
|
|
I am also looking for WPF animation best practices. I have been using WPF for only abourt a month now. It seems that when getting into animation and storyboards the XAML can start to get littered with animation code. I suspect it would eventually be hard to determine/debug what code was affecting what control when multiple animation effects might apply to a control or style. Is there a book or website that might have tips on where to place animation XAML and how to structure it? Thanks! Matt Penner | |||
|
feedback
|