WPF:如何使用 BackgroundWorker 处理错误

发布于 2024-07-13 14:45:19 字数 157 浏览 7 评论 0原文

对于 Windows 客户端编程,我是一个新手。 我有一个后台工作人员,它连接了 DoWork 事件和 RunCompleted 事件。 如果 DoWork 中抛出异常,我想更改我的 UI,但是我不能,因为它位于不同的线程中。 我可以将错误传达给 RunCompleted,但这对我也没有帮助。

I am a bit of a newbie when it comes to windows client programming. I have a background worker that has a DoWork event and a RunCompleted event wired up. If an exception gets thrown in DoWork, I want to make changes to my UI, however, I cant because it is in a different thread. I can communicate the error to RunCompleted, but that doesn't help me either.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

此生挚爱伱 2024-07-20 14:45:19

调用 Dispatcher.BeginInvoke。 基本上,你想要这样的代码:

void UpdateState(WhatEverType someObject)
{
    if (! Dispatcher.CheckAccess())
    {
        Dispatcher.BeginInvoke(DispatcherPriority.Normal, new Action(()=>UpdateState(someObject));
    }
    else
    {
        //make the UI changes here.
    }
}

call Dispatcher.BeginInvoke. Basically, you want code like this:

void UpdateState(WhatEverType someObject)
{
    if (! Dispatcher.CheckAccess())
    {
        Dispatcher.BeginInvoke(DispatcherPriority.Normal, new Action(()=>UpdateState(someObject));
    }
    else
    {
        //make the UI changes here.
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文