Working with WinForms you have to free memory after using gdi objects, event handlers, objects from native code, etc.
In WinForms I used to remove for example event handlers in the dispose method.
What is the best workaround to prevent memory leaks in Wpf? Is it the same as in Winforms using Dispose pattern? At all, do I have to care about event handlers, gdi objects in Wpf? What about the runtime created resources(Brushes, etc)?
IDisposable(whether it is WinForms, WPF or anything else) should be dealt with accordingly... and event handlers (even for NonUI-instances) have to be dealt with too... – Yahia Oct 12 '11 at 8:23