为什么我的C#WPF程序在Application.Shutdown()之后继续执行行?

前端之家收集整理的这篇文章主要介绍了为什么我的C#WPF程序在Application.Shutdown()之后继续执行行?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是一段代码,我弹出一个简单的对话框(“选择器”).根据用户的输入,应用程序可能会终止.
DPChooser chooser = new DPChooser(dataProvider);
    if (chooser.ShowDialog() == false)
        Application.Current.Shutdown(0);
    else
        ApplicationContext.Current.InitializeDataProviderAPI(chooser.DataProvider);
    }

    // more code continues here
    // THE PROBLEM:
    //     Even when Shutdown() above is called,//     the execution continues proceeding past here!

我在调试器中运行它,所以我知道if正在评估为false,并且我知道正在调用Shutdown().

那为什么不关闭呢?

注意:我认为这不是一个穿线的东西.我还没有在其他线程上开始任何事情.即使涉及到线程,我仍然不希望这个线程中的代码继续经过Shutdown().

解决方法

Shutdown停止Dispatcher处理,并且就WPF而言关闭应用程序,但实际上并不会终止当前线程.

在您的情况下,您需要阻止该调用之外的代码运行.一个简单的回报就足够了:

if (chooser.ShowDialog() == false)
 {
     Application.Current.Shutdown(0);
     return;
 }
 else { //...
原文链接:https://www.f2er.com/csharp/95629.html

猜你在找的C#相关文章