Esempio n. 1
0
        void Current_DispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e)
        {
            e.Handled = true;
            var window = new UnhandledExceptionWindow(e.Exception);

            window.ShowDialog();
        }
Esempio n. 2
0
        void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
        {
            var window = new UnhandledExceptionWindow(e.ExceptionObject as Exception);

            window.ShowDialog();
        }
Esempio n. 3
0
 void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
 {
     var window = new UnhandledExceptionWindow(e.ExceptionObject as Exception);
     window.ShowDialog();
 }
Esempio n. 4
0
 void Current_DispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e)
 {
     e.Handled = true;
     var window = new UnhandledExceptionWindow(e.Exception);
     window.ShowDialog();
 }