Search Results

5
votes

Simple WPF sample causes uncontrolled memory growth

I was able to reproduce your problem using the code you provided. Memory keeps growing because the Canvas objects are never released; a memory profiler indicates that the Dispatcher's ContextLayout …
2
votes

Memory Leaks in C# WPF

.NET Memory Profiler is an excellent tool, and one that I use frequently to diagnose memory leaks in WPF applications. As I'm sure you're aware, a good way to use it is to take a snapshot b …
1
vote

where did my memory go? large private bytes count

I had a similar problem in a WPF application, and used UMDH to track …