This question is locked. New answers and comments are not allowed.
Presently, the WPF Sample integration code does not catch exceptions like the winforms sample - this is pretty much the entire reason I want to use Analytics.
I suggest changing the OnStartup method to:
protected override void OnStartup(StartupEventArgs e) { // your existing startup logic Monitor = AnalyticsMonitorFactory.CreateMonitor("<ID>"); Monitor.Start(); AppDomain.CurrentDomain.UnhandledException += (s, ev) => { Monitor.TrackException((Exception)ev.ExceptionObject); }; }