# Fixed Memory leaks A collection of memory leaks we fixed and where they were. # 1. DependencyPropertyDescriptor.FromProperty Previously found in "ContentControlContentChangedBehavior". Switching to PropertyChangeNotifier which just creates a normal Binding fixes the issue. # 2. DispatcherTimer Previously found in "TicketDetailView.xaml.cs" A DispatcherTimer started with '.Start()' need a '.Stop()' call. If you use '+=' u likewise need a '-='.