I was trying to bind an BitmapImage to WPF’s Image.Source property. Somehow the image kept not showing up so I added some WPF binding diagnostics: xmlns:trace=”clr-namespace:System.Diagnostics;assembly=WindowsBase” This how my Image control looked like at the end: <Image Source=”{Binding FrontImage, trace:PresentationTraceSources.TraceLevel=High}” Initialized=”imgFrontScan_Initialized” /> Looking at the Output window I saw Deactivate and Detach events for BindingExpression […]