WPF: Reducing CPU consumption for animations
Lately I’ve been working on a project at work and the application was performing pretty well. The CPU Usage was below 2% and I was quite happy with it. Then I decided to add a simple animation that continues executing forever… the results 15% CPU consumption … I was amazed at how much CPU was being wasted. Yet I am a stubborn guy and if I want an animation to execute forever, I will do it no matter what….
I started researching and I found out that WPF animations by default try to serve a 60 frames per second… Which is quite a lot!!! After having a chat with my friend ( and role model ) DR.WPF, it was all clear. (Thanks Dr for all the help you give me !!!)
So in order to reduce the frame rate per second (thus reducing CPU usage), all you need to do is to override the property meta data of the Dependency property Timeline.DesiredFrameRateProperty…. So basically all you need is 1 line of code (I usually put this code on startup of the application)
1: Timeline.DesiredFrameRateProperty.OverrideMetadata(
2: typeof(Timeline),
3: new FrameworkPropertyMetadata { DefaultValue = 20 }
4: );
Yep, that’s it… Amazing but true…. I managed to make an application that was consuming 15% CPU to consume 2% CPU….
With regards to what frame rate should you use, I would leave that to you…. This depends on how smooth you want your animations to perform… Yet for me 20 is working quite fine…
Hope this helps





Great work!
coolio
[...] tipp innen [...]
Pingback by Túl sok CPU-t eszik a WPF animáció? - VBandi | June 14, 2008 |
Thanks, some of my projects can really use this one to.
Hi Marlon,
Great article, well done!!!
Rudi Grobler
[...] Marlon Grech posted an easy way to reduce CPU consumption for WPF animations. [...]
Pingback by Visual Studio Links #40 : Visual Studio Hacks | June 22, 2008 |
Marlon,
Very nice!
Cheers,
Karl
Hi!
I have been prove it and it works perfectly!!
It was great… pass from 20% cpu usage to 10%…5%…
thanks!!!
[...] kom jeg over et innlegg i en blogg som beskriver hvordan redusere FPS, som igjen fører til mindre CPU-forbruk. Settes FPS for lavt, [...]
Pingback by Overganger på bilder i WPF bruker mye CPU - Ole A. E. | January 11, 2009 |