vote up 9 vote down star
11

I love programming with and for Windows Presentation Framework. Mostly I write browser-like apps using WPF and XAML.

But what really annoys me is the slowness of WPF. A simple page with only a few controls loads fast enough, but as soon as a page is a teeny weeny bit more complex, like containing a lot of data entry fields, one or two tab controls, and stuff, it gets painful.

Loading of such a page can take more than one second. Seconds, indeed, especially on not so fast computers (read: the customers computers) it can take ages.

Same with changing values on the page. Everything about the WPF UI is somehow sluggy.

This is so mean! They give me this beautiful framework, but make it so excruciatingly slow so I'll have to apologize to our customers all the time!

My Question:

  1. How do you speed up WPF?
  2. How do you profile bottlenecks?
  3. How do you deal with the slowness?

Since this seems to be an universal problem with WPF, I'm looking for general advice, useful for many situations and problems.

Some other related questions:

flag

70% accept rate

8 Answers

vote up 8 vote down check
  1. How do you speed up WPF?
    Often after using one of the following profiling tools it is obvious what is causing my bottlenecks.

    • If memory is the issue then I virtualize my data.
    • If render time is the issue then I virtualize the controls or simplify control templates where possible.
    • If processing time is the issue I try to improve my algorithm or move that work to a background thread and show a throbber in my ui while the work is going.
  2. How do you profile bottlenecks?

  3. How do you deal with the slowness?
    Profiling and counseling.

link|flag
1  
What do you mean by "virtualize" the data/controls? – Orion Edwards Feb 18 at 21:03
(+1) for an excellent answer. However, I think you should expand on 3, because the rest of your answer is so professional. You already partially answered it with 'show throbber in UI', and there are other options such as preloading, sequential rendering, splitting pages, etc. Question 3 is the broader most practical question in an application sense (i.e. UX), and so it deserves some consideration. – devinb May 6 at 12:54
By 'virtualizing' the OP means this: for a control with many items (such as a list control), only hold the visible items in memory, never the complete set of items. This saves memory when you have a huge amount of items, as you only have to store as many items as are visible to the user, not the whole set. – Dan Jun 23 at 2:59
vote up 4 vote down

Install SP1... Loads of very cool preformance increases for WPF!!!

Read more here

Here is a example of 2 enhanchements made in SP1: Deffered scrolling & UI Element recyceling!!!

link|flag
The ones you might "notice" first are the scrolling and binding improvements... Read more here: dotnet.org.za/rudi/archive/… – rudigrobler Oct 21 '08 at 14:56
vote up 1 vote down

avoiding animations also helps a lot sometimes. if you have to use animations, decrease the framerate, this will improve "Feeled" performance

link|flag
vote up 1 vote down

WPF is meant for computers with modern graphics cards. Do your clients have modern graphics cards capable of running Aero? If your clients have older graphics cards, WPF will fall back to software rendering which runs extremely slow in comparison to hardware accelerated graphics.

You also might want to profile your application to make sure that it is actually WPF that is the slow part. It's possible that there is something else that is actually the bottleneck.

link|flag
vote up 0 vote down

Hi Sam, can you give more details?

I only noticed a slow performance when I use something like a listview or a grid that has some complexity. The solution is to simplify it.

Other than that I only noticed a slow performance when loading the app for the first time.

HTH

link|flag
vote up 4 vote down

Dd you try to use the WPF PerfTool instead of the one in VS?

link|flag
vote up 0 vote down

Remove alpha transparency/ bitmap effects.

link|flag
vote up 0 vote down

I find it helpful to side-step the XAML, and write the entire UI in C#. This lets me precisely control when the controls are created and loaded. It also helps me understand what XAML is doing "under the covers".

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.