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 …
6
votes

How to install WPF application to a PC without Framework 3.5

Visual Studio 2008 SP1 adds support for the "Client Profile" subset of the .NET Framework. If the Windows XP SP3 machines you're targeting don't have any version of the .NET Framework installed alr …
5
votes

Are there problems with rendering WPF over Remote Desktop under Windows XP?

As of .NET 3.5 SP1, all WPF graphics are remoted as bitmaps, even on Vista-to-Vista communication. From …
2
votes

In a WPF app, is there a object I can assign to FileSystemWatcher.SynchronizingObject?

Reflector shows that the only class that implements ISynchronizeInvoke (i.e., the type of the FileSystemWatcher.SynchronizingObject property) is System.Windows.Form. …
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 …