码迷,mamicode.com
首页 > Windows程序 > 详细

C#Winform屏蔽错误窗弹出

时间:2014-10-08 18:01:05      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:winform   style   blog   color   io   ar   for   sp   div   

 

   static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e)
        {

        }

        static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
        {
        }
  Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);
            //处理UI线程异常
            Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException);
            //处理非UI线程异常
            AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);

  

C#Winform屏蔽错误窗弹出

标签:winform   style   blog   color   io   ar   for   sp   div   

原文地址:http://www.cnblogs.com/ConstSurpass/p/4011061.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!