Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to speed up WPF programs?

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:

  • What tools do you use for WPF development
  • Tools to develop WPF or Silverlight applications
like image 758
Sam Avatar asked Oct 21 '08 14:10

Sam


People also ask

Why is WPF so slow?

While WPF is over a decade old and has been improved greatly over the years, there are still several areas that can suffer from poor performance. The reasons for this poor performance include things such as bad coding practices, broken bindings, complex layouts, the lack of UI virtualization, and much more.

Is WPF still relevant 2021?

WPF is still one of the most used app frameworks in use on Windows (right behind WinForms).

Is WPF fast?

In general, WPF is perfoming much worse in drawing performance than Windows Forms, and native GDI or DirectX. Yes, WPF is powerful in the sense you might make some neat stuff that is not supported in GDI, but it is more sluggish.

Is WPF hardware accelerated?

A rendering tier value of 1 or 2 means that most of the graphics features of WPF will use hardware acceleration if the necessary system resources are available and have not been exhausted. This corresponds to a DirectX version that is greater than or equal to 9.0.


4 Answers

  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?

    • .NET Memory Pofiler
    • dotTrace
    • Performance Profiling Tools for WPF
    • Snoop
    • Crack.NET

  3. How do you deal with the slowness?

    Profiling and counseling.

like image 199
Todd White Avatar answered Oct 16 '22 15:10

Todd White


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

Read more here

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

like image 39
rudigrobler Avatar answered Oct 16 '22 16:10

rudigrobler


I can not add comments, that's why I post a new answer to this: I've found this video from the pdc09 that gives some ideas about how to profile wpf apps and because it helped me lot, I want to share the link:

Advanced WPF Application Performance Tuning and Analysis

like image 5
HCL Avatar answered Oct 16 '22 14:10

HCL


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.

like image 2
jezell Avatar answered Oct 16 '22 16:10

jezell