捕获运行时中的所有异常?C#.

本文关键字:异常 运行时 | 更新日期: 2023-09-27 18:32:43

我希望能够捕获程序的每个异常并将其显示在MessageBox中,而不是程序只是说"已停止工作"。

由于某种原因 - 每次软件出现故障时 - 程序都会说停止工作。我希望能够在MessageBox中显示它,就像在Visual Studio中一样。怎么可能?

C# WinForms。

捕获运行时中的所有异常?C#.

订阅 ThreadException 和 CurrentDomain.UnhandledException

static void Main(){
    Application.ThreadException += ApplicationThreadException;
    AppDomain.CurrentDomain.UnhandledException += CurrentDomainUnhandledException;
}
static void ApplicationThreadException(object sender, System.Threading.ThreadExceptionEventArgs e)
{
    ShowGenericErrorMessage();
}
static void CurrentDomainUnhandledException(object sender, UnhandledExceptionEventArgs e)
{
    ShowGenericErrorMessage();
}

Global.asax 中的Application_Error方法是您捕获的最后机会:

protected void Application_Error(Object sender, EventArgs e)

尝试类似以下内容:

public Form1()
        {
            InitializeComponent();
            AppDomain.CurrentDomain.UnhandledException += HandleUnhandledException;
        }
        private void HandleUnhandledException(object sender, UnhandledExceptionEventArgs e)
        {
            MessageBox.Show("Exception {0} was thrown", e.ToString());
        }

试试这个:

try
{
''Code block
}
catch(Exception ex)
{
''the object ex has details about the exception use it display the error in msg box
}

此外,此链接还简单地解释了异常处理:http://www.dotnetperls.com/exception

创建一个未经处理的异常处理程序,如下所示:

static void UnhandledExceptionHandler(object sender, UnhandledExceptionEventArgs args)
{
    Exception ex = (Exception)args.ExceptionObject;
    UtilGui.LogException(ex);
}
static void ApplicationThreadUnhandledExceptionHandler(object sender, System.Threading.ThreadExceptionEventArgs args)
{
    Exception ex = (Exception)args.Exception;
    UtilGui.LogException(ex);
}

并在您的Main方法中注册它,如下所示:

// Add the event handler for handling UI thread exceptions to the event.
Application.ThreadException += new ThreadExceptionEventHandler(ApplicationThreadUnhandledExceptionHandler);
// Set the unhandled exception mode to force all Windows Forms 
// errors to go through our handler.
Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);
// Add the event handler for handling non-UI thread exceptions to the event.
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomainUnhandledExceptionHandler);