I am using PerfView in order to discover memory leaks.
After comparing between two snapshot I noticed that under the tab RefTree -> static vars in PerView.
MyPageDependencyProperty of mine takes 78.9% of the Inc%.
The MyPageDependencyProperty should not be there because I closed the the xaml window it is belong to.
I don't use AddValueChanged which can cause memory leak.
The DependencyProperty reveals ObservableCollection<object>.
Does anyone know can I solve this issue?
thanks