当前位置:  开发笔记 > 开发工具 > 正文

Catch块没有捕获异常

如何解决《Catch块没有捕获异常》经验,为你挑选了1个好方法。

我有一个子窗体,它在Load事件处理程序中抛出ApplicationException(故意用于测试目的).父表单在Try ... Catch ex As Exception块中包装ChildForm.Show()方法.catch块只显示一条消息并关闭子表单.在Visual Studio 2008(.net 3.5 sp1)中调试时,所有工作都按预期工作.但是,当我在visual studio之外运行它时,Catch块似乎错过了,并且发生了未处理的异常.知道为什么会这样吗?

谢谢.

示例代码:

Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim f2 As Form2

        f2 = New Form2

        Try
            MessageBox.Show("Opening form 2")
            f2.ShowDialog()
        Catch ex As Exception
            f2.Close()
            MessageBox.Show("Form 2 closed.")
        End Try
    End Sub

End Class

Public Class Form2

    Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Throw New ApplicationException("Test Form_Load")
    End Sub

    Public Sub New()

        ' This call is required by the Windows Form Designer.
        InitializeComponent()

        ' Add any initialization after the InitializeComponent() call.
    End Sub

End Class

堆栈跟踪:

 System.ApplicationException:
 Test Form_Load   at WindowsApplication1.Form2.Form2_Load(Object sender, EventArgs e)
 in UnhandledExceptionTest2\WindowsApplication1\Form2.vb
 System.Windows.Forms.Form.OnLoad(EventArgs e)
 System.Windows.Forms.Form.OnCreateControl()
 System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
 System.Windows.Forms.Control.CreateControl()
 System.Windows.Forms.Control.WmShowWindow(Message& m)    at
 System.Windows.Forms.Control.WndProc(Message&> m)    at
 System.Windows.Forms.ScrollableControl.WndProc(Message&> m)    at
 System.Windows.Forms.ContainerControl.WndProc(Message&> m)    at
 System.Windows.Forms.Form.WmShowWindow(Message&> m)    at
 System.Windows.Forms.Form.WndProc(Message&> m)    at
 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message&> m)    at
 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message&> m)    at
 System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr
 lparam)

Hans Passant.. 11

Form.Load事件的行为与Windows窗体中的大多数其他事件的行为相同.它由消息循环调度,在这种情况下,当Windows发送WM_SHOWWINDOW消息时.消息循环中有一个异常处理程序可以防止未捕获的异常终止消息循环.该异常处理程序引发Application.ThreadEvent事件.默认事件处理程序显示未处理的异常对话框.

简而言之,您无法在按钮单击处理程序中捕获Load事件中引发的异常.除了在Load事件处理程序本身中捕获和处理异常之外,很难做到,我建议你在表单中添加一个公共方法.像Initialize()之类的东西.将Load事件中的代码移动到该方法中.在调用Show()方法之后调用Initialize(),现在可以捕获异常.



1> Hans Passant..:

Form.Load事件的行为与Windows窗体中的大多数其他事件的行为相同.它由消息循环调度,在这种情况下,当Windows发送WM_SHOWWINDOW消息时.消息循环中有一个异常处理程序可以防止未捕获的异常终止消息循环.该异常处理程序引发Application.ThreadEvent事件.默认事件处理程序显示未处理的异常对话框.

简而言之,您无法在按钮单击处理程序中捕获Load事件中引发的异常.除了在Load事件处理程序本身中捕获和处理异常之外,很难做到,我建议你在表单中添加一个公共方法.像Initialize()之类的东西.将Load事件中的代码移动到该方法中.在调用Show()方法之后调用Initialize(),现在可以捕获异常.

推荐阅读
手机用户2402852307
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有