WPF Animations are Easy

Creating animations in WPF is easier than it sounds. No explicit use of timers is required, in fact you can create many useful animations using pure markup (XAML). Perhaps the best use of animations is to spice up UI. Most properties of objects can be animated (e.g. width, height, color, position, etc). Want your button to fade to a new color when a user mouses over it? Want your text to quickly slide into view rather than just abruptly appear? Of course once you see how easy WPF animations are you might be in danger of overdoing it and creating some truly garish and annoying apps but that's why you like programming - because you have courage.

Ok, here's a link to the SDK's introduction to Animations. https://msdn2.microsoft.com/en-us/library/ms752312.aspx

This overview introduces the core principals of animations with examples. Currently it has a rating of 5 out of 5 stars because it's quality. Read it carefully and you'll have a great base for all your animation adventures. Once you have finished this, if you feel you need more, check out some of the other overviews for animations at https://msdn2.microsoft.com/en-us/library/ms749238.aspx.

In addition, there are a number of smaller "How to" articles that demonstrate specific animation scenarios. There are a ton of these so you may find yourself browsing around for a bit. Here are the links to the How-to articles:
https://msdn2.microsoft.com/en-us/library/ms746916.aspx
https://msdn2.microsoft.com/en-us/library/aa350177.aspx
https://msdn2.microsoft.com/en-us/library/ms752052.aspx
https://msdn2.microsoft.com/en-us/library/ms753933.aspx

BTW, if you want to use WPF to make hard-core games, don’t bother. WPF was not designed to create large, system intensive games. To get that kind of performance you should look at DirectX. However, if you want to make smaller, “casual games” like what you might see hosted online, then WPF might be the easiest way to go.

About Us


We are the Windows Presentation Foundation SDK writers and editors.