在visual studio中调试时激活自定义新窗口

时间:2016-02-08 15:21:42

标签: c# wpf multithreading debugging

在下面的代码中,如果有未设置的内容,我会显示有关我的应用程序的信息 (...在其中一个类或方法中)正确弹出一个窗口,显示当前消息,告知缺少的内容。

只有一个问题我想知道是否以及如何做到这一点,应用程序在调试时被冻结,所以我无法移动窗口或点击它的控件,

您认为有什么解决方法我可以申请吗?

void SomeMainThreadMethod()
{
    new System.Threading.Thread(() => ProcessSomeLongRunningTask()).Start();
}
//then from another helper class
void ProcessSomeLongRunningTask()
{
    Application.Current.Dispatcher.Invoke(new Action(() =>CustomW.MsgBoxShow(" Title ", "Msg")), System.Windows.Threading.DispatcherPriority.Normal);
}

1 个答案:

答案 0 :(得分:2)

这里的问题是你正在主调度程序线程上处理你的消息框,并且你知道这默认为一个对话框并从主应用程序窗口窃取焦点。

因此,您可以尝试在您创建的新线程中执行消息框,或者您可以使用与消息框相同的功能创建自己的自定义用户控件,但它不会继承该工具行为。

您仍然可以像您创建的辅助线程一样运行它,但请记住将与主调度程序所做的对象交互的任何内容包装为委托操作

       public void LongProcess()
       {
            Thread t = new Thread(new ThreadStart(
            delegate
               {

                //Complex code goes here

               this.Dispatcher.Invoke((Action)(() =>
               {

                  //Any requests for controls or variables that you need
                  //from the main application running on the main dispatcher
                  //goes here

               }));


                //Finally once you've got the information to return to
                //your user call a message box here and populate the 
                //message accordingly.

                MessageBox.Show("", "");

                //If a message box fails or isn't good enough
                //create your own user control and call it here like:

                usrConMessage msg = new usrConMessage();
                msg.strTitle = "Whatever";
                msg.strContent = "Whatever";
                msg.show(); //Not a dialog so doesn't steal focus

                //That is normally how I would go about providing a
                //unique and polished user experience.

               }
             ));
            t.Start();
      }