This is a mirror of official site: http://jasper-net.blogspot.com/

Silverlight Performance Tip: Understanding the impact of Effects on performance

| Sunday, September 19, 2010
We recently received a request from a developer to help analyze performance for a basic Silverlight application.
This particular app was used as one of the Silverlight SDK samples (See image below). The application had a simple set of controls on a form, but its CPU usage was very high.
I wanted to share our findings and explain how we fixed the issue.

The first thing we did was to turn on EnableRedrawRegions.  This lets you see which rectangles are being redrawn by the graphics engine within your application. Once enabled, all repainted regions’ colors will change in blue/yellow/pink order.  This can be enabled by passing the parameter shown here in the application .aspx page:


   

The issue:
  Once we enabled redraw regions we could see that when we switched to a tab that contained an animation, the entire form was constantly being updated.  
Looking carefully at the form and also through the template sources we could see that the outer border (as well as one of the inner borders) was using a DropShadowEffect.
This means that any redraw of any child element inside of that border’s visual tree will trigger a redraw of everything within the effect (in this case, the entire area of the border).
So even with a small animation, the entire application was being redrawn every frame!
Note that not only an animation will trigger a redraw, but any redraw such as cursor blink in a text box, or any redraw resulting from mouse movements over a control.

The solution:

We could  have simply removed the DropShadowEffect,  but we wanted to preserve the original design, so we did the following:
1.  Add a new sibling element the same size of the border that has the DropShadowEffect, but contains no child elements.
2.  Removed the Effect from the original border.

Below simple changes provided huge performance improvements.

Read more: Silverlight Performance Blog

Posted via email from .NET Info

0 comments: