0

.NET Windows 窗体CurrencyManager会吞下导航时引发的异常(请参阅MSDN Social 上的“CurrencyManager.OnPositionChanged 中的错误 - 吃掉异常”)。

但是,我需要捕获或获取可能在CurrentChanged事件处理程序中抛出的异常。有没有办法得到它?订阅BindingComplete和阅读e.Exception无济于事。

bindingSource.MoveLast();
// exception isn't thrown up to here

private void bindingSource_CurrentChanged(object sender, EventArgs e)
{
    // save old, throws exception
}

目前,当保存旧项目失败时,用户没有得到任何反馈。因此我需要一种方法来获取异常。

干杯马蒂亚斯

4

1 回答 1

1

您可以尝试通过以下方式获取它:AppDomain.CurrentDomain.FirstChanceException

简单示例代码:

using System;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            AppDomain.CurrentDomain.FirstChanceException += (s, e) => Console.WriteLine(String.Format("Exception thrown: {0}", e.Exception.GetType()));

            try
            {
                ThrowException();
            }
            catch(InvalidProgramException)
            {
                // mjam mjam
            }

            Console.Read();
        }

        private static void ThrowException()
        {
            throw new InvalidProgramException("broken");
        }
    }
}
于 2011-06-24T08:57:56.107 回答