When binding Collection view to a ObservableCollection the items of the collection stay in memory. See profiling see screenshot
Even removing the binding when the view disappears does not solve the issue. When the binding is not added the code does not introduce the memleak.
Description
When binding Collection view to a ObservableCollection the items of the collection stay in memory. See profiling see screenshot Even removing the binding when the view disappears does not solve the issue. When the binding is not added the code does not introduce the memleak.
Steps to Reproduce
Expected Behavior
when view closes all controls release their bindings and the objects can be collected by the GC
Actual Behavior
when CollectionView gets popped it does not release the binding
Basic Information
Screenshots
Reproduction Link
https://github.com/hulluP/CollectionViewTest/tree/MemLeakIssue
Workaround