gpt4 book ai didi

c# - 防止 "Send error report to Microsoft"

转载 作者:太空狗 更新时间:2023-10-29 17:51:26 27 4
gpt4 key购买 nike

我正在从事一个相当大的项目,它不太可能会捕获一切。我找到了通知我未处理异常的事件,但是我还没有找到以编程方式关闭 Windows 错误对话框的方法。理想情况下,如果有未处理的异常,我希望触发该事件,提供一个对话框告诉用户存在问题,然后优雅地关闭。有什么办法吗?我意识到我可以将最高层包裹在一个 try catch 中,但我希望有一些更优雅的东西。

最佳答案

这就是我们所做的。

static void Main() {
try
{
SubMain();
}
catch (Exception e)
{
HandleUnhandledException(e);
}
}

private static void SubMain()
{
// Setup unhandled exception handlers
AppDomain.CurrentDomain.UnhandledException += // CLR
new UnhandledExceptionEventHandler(OnUnhandledException);
Application.ThreadException += // Windows Forms
new System.Threading.ThreadExceptionEventHandler(
OnGuiUnhandledException);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new frmMain());
}

// CLR unhandled exception
private static void OnUnhandledException(Object sender,
UnhandledExceptionEventArgs e)
{
HandleUnhandledException(e.ExceptionObject);
}

// Windows Forms unhandled exception
private static void OnGuiUnhandledException(Object sender,
System.Threading.ThreadExceptionEventArgs e)
{
HandleUnhandledException(e.Exception);
}

关于c# - 防止 "Send error report to Microsoft",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/473366/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com