How to make my WPF application as FAST as Outlook
- by Raul Otaño
The commons WPF applications take some time for loading medium complex views, once the view is loaded it works fine. For example in a Master - Detail view, if the Detail view is very complex and use different DataTemplates take some seconds (2-3 seconds) for load the view.
When i open the Outlook application, for instance, it renders complex views and it is relative much more fast.
Is there a way for increase the performance of my WPF application? Maybe a way for not loading the template's data every time that change the "master" item, and load it only one time in the app time live?
i will appreciate any suggestion.