WPF application performance degradation when Aero is disabled?

I am working on a WPF application. During the tests, I noticed that the application runs more smoothly if I switch to the Windows Aero theme instead of the main theme.

Why is this happening - and how can I make sure that applications always work as smoothly as when using the Windows Aero theme?

Thanks for your reply!

+4
source share
1 answer

The reason may be that Windows uses a graphics card to speed up the drawing processes in the Aero tag.

Therefore, if you deactivate the Aero theme, all processing is performed by the CPU (instead of the GPU), which leads to a decrease in performance compared to the hardware accelerated task (if it is performed by the GPU). The non-Aero theme uses only a processor for drawing processes!

The source of my claim can be found here.

+2
source

All Articles