1. 程式人生 > 其它 >WPF 捕捉全域性異常

WPF 捕捉全域性異常

參考:https://www.cnblogs.com/snow-zhang/p/10107108.html

寫在App.xaml.cs中

 void App_OnStartup(object sender, StartupEventArgs e)
        {
            //UI執行緒未捕獲異常處理事件
            this.DispatcherUnhandledException += new DispatcherUnhandledExceptionEventHandler(App_DispatcherUnhandledException);
            //Task執行緒內未捕獲異常處理事件
TaskScheduler.UnobservedTaskException += TaskScheduler_UnobservedTaskException; // 非UI執行緒未捕獲異常處理事件 AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); } void App_Exit(object sender, ExitEventArgs e) {
// 程式退出時需要處理的業務 } void App_DispatcherUnhandledException(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e) { try { e.Handled = true; //把 Handled 屬性設為true,表示此異常已處理,程式可以繼續執行,不會強制退出 MessageBox.Show("
UI執行緒異常:" + e.Exception.Message); } catch (Exception ex) { //此時程式出現嚴重異常,將強制結束退出 MessageBox.Show("UI執行緒發生致命錯誤!"); } } void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) { StringBuilder sbEx = new StringBuilder(); if (e.IsTerminating) { sbEx.Append("非UI執行緒發生致命錯誤"); } sbEx.Append("非UI執行緒異常:"); if (e.ExceptionObject is Exception) { sbEx.Append(((Exception)e.ExceptionObject).Message); } else { sbEx.Append(e.ExceptionObject); } MessageBox.Show(sbEx.ToString()); } void TaskScheduler_UnobservedTaskException(object sender, UnobservedTaskExceptionEventArgs e) { //task執行緒內未處理捕獲 MessageBox.Show("Task執行緒異常:" + e.Exception.Message); e.SetObserved();//設定該異常已察覺(這樣處理後就不會引起程式崩潰) }

完善一下

 private void App_OnStartup(object sender, StartupEventArgs e)
        {
            InitExceptionHandle();
        }
        public static void Close(int exitCode = 0)
        {
            Environment.Exit(exitCode);
        }
        private static void OnUnhandledException(Exception e)
        {
            App.Current.Dispatcher.Invoke(() =>
            {
                lock (App.Current)
                {
                    System.Console.WriteLine("Exception #{0}", e);
                    //  App.Close();

                }
            });
        }
        private void InitExceptionHandle()
        {
            this.DispatcherUnhandledException += (o, args) =>
            {
                args.Handled = true;
                OnUnhandledException(args.Exception);
            };
            TaskScheduler.UnobservedTaskException += (o, args) =>
            {
                OnUnhandledException(args.Exception);
            };
            AppDomain.CurrentDomain.UnhandledException += (o, args) =>
            {
                if (args.ExceptionObject is Exception e)
                {
                    OnUnhandledException(e);
                }
                else
                {
                    System.Console.WriteLine("Exception #{0}", args.ExceptionObject);
                    
                }
            };
        }