The CompositionTarget.Rendering event is the perfect thing to build a game's main loop upon. It basically fires at the rate of vsync (usually 60 Hz).
Occurs just before the objects in the composition tree are rendered. The Rendering event is routed to the specified event handler after animation and layout have been applied to the composition tree.
The per-frame animation how-to article explains a little bit more.
Note that your event handler method is called after layout has been computed. However, you can modify layout in your event handler method, which means that layout will be computed once more before rendering.
Based on that, the rules for code inside its handler are:
- Avoid changing layout
- Return quickly
What other gotchas are there? What non-obvious actions cause another layout pass? How much time exactly do I have inside the handler?
I think the main purpose of it is to enable timer-free animations, such as those employing physics element like gravity, where exact regular timing is required. However it is not a good place for gaming graphics... WPF is not a gaming language and serious games will not run smoothly using it as there is too much overhead. If you want to write a .NET game, then use XNA.
From the book 'WPF Control Development Unleashed: Building Advanced User Experiences':