zoukankan      html  css  js  c++  java
  • Invisible or disabled control cannot be activated

    在WPF 应用程序下出现:Invisible or disabled control cannot be activated(不见的或禁用的控件不能被激活)错误。

    System.ArgumentException: Invisible or disabled control cannot be activated
       at System.Windows.Forms.ContainerControl.SetActiveControlInternal(Control value)
       at System.Windows.Forms.ContainerControl.SetActiveControl(Control ctl)
       at System.Windows.Forms.ContainerControl.set_ActiveControl(Control value)
       at System.Windows.Forms.Integration.WindowsFormsHost.RestoreFocusedChild()
       at System.Windows.Forms.Control.InvokeMarshaledCallbackDo(ThreadMethodEntry tme)
       at System.Windows.Forms.Control.InvokeMarshaledCallbackHelper(Object obj)
       at System.Threading.ExecutionContext.runTryCode(Object userData)
       at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
       at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean ignoreSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Windows.Forms.Control.InvokeMarshaledCallback(ThreadMethodEntry tme)
       at System.Windows.Forms.Control.InvokeMarshaledCallbacks()

    解决办法:

    该错误是线程的问题,对程序运行无影响,可以考虑过滤该错误。

    方法如下:

    1 确保删除的控件不是不见的或禁用的控件。

    2 过滤该错误方法。

    public MainWindow()
            {
                System.Windows.Forms.Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException);
            }

            void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e)
            {
                if (!FailureFromFocusedChild(e.Exception))
                {
                    System.Windows.Forms.Application.ThreadExceptionDialog dlg;
                    dlg = new System.Windows.Forms.Application.ThreadExceptionDialog(e.Exception);
                    dlg.ShowDialog();
                }

            private bool FailureFromFocusedChild(Exception e)
            {
                bool result = false;
                string stackTrace = e.StackTrace;
               
                result = (e is System.ArgumentException) && (e.Source == "System.Windows.Forms")
                        && (stackTrace.IndexOf("System.Windows.Forms.Integration.WindowsFormsHost.RestoreFocusedChild")>=0);


                return result;
            }

    参考:http://support.microsoft.com/kb/2686194

  • 相关阅读:
    delphi调用存储过程
    mysql存储过程中使用事务
    高性能JAVA开发之内存管理
    高效的找出两个List中的不同元素
    The reference to entity "characterEncoding" must end with the ';' delimiter
    Maven的安装、配置及使用入门
    如何在电脑上测试手机网站(全)
    三种常用的js数组去重方法
    oracle ORA-01461 错误 can bind a LONG value only for insert into a LONG column
    windows cmd下netstat查看占用端口号的进程和程序
  • 原文地址:https://www.cnblogs.com/chhuic/p/3245939.html
Copyright © 2011-2022 走看看