I'm currently experiencing a memory leak in WPF where I am using A TreeView which is databinding to a list. Each item in the list will display a custom control. When an item is removed from the list and the custom control is no longer displayed
the control is not disposed of. The control has bindings to dependecyproperties.
I've read several posts where they suggested to clear all the bindings. Where does that occur, in the view model or the control code? I'm not able to get a method to dispose / shutdown for the control.
Is there a known memory leak in the TreeView for WPF?