如何为 Dispatcher.BeginInvoke 提供回调函数

发布于 2024-12-03 19:17:38 字数 140 浏览 0 评论 0原文

当以 Dispatcher.BeginInvoke 启动的函数完成时,我需要使用回调函数来执行一些后处理任务。但是我在 Dispatcher.BeginInvoke 中找不到任何参数来接受回调。是否可以为 Dispatcher.BeginInvoke 提供回调函数?

I need to use callback function to do some post procesing tasks when the function started with the Dispatcher.BeginInvoke finishes. However i could not find any parameter in Dispatcher.BeginInvoke to accept a callback. Is it possible to give a callback function to Dispatcher.BeginInvoke?

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

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

发布评论

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

评论(1

玉环 2024-12-10 19:17:38

BeginInvoke 返回的 DispatcherOperation 对象上有一个 Completed 事件。订阅该操作以在完成后执行操作:

var dispatcherOp = Dispatcher.BeginInvoke( /* your method here */);
dispatcherOp.Completed += (s, e) => { /* callback code here */ };

该操作有可能在您订阅之前完成,因此您也可以在订阅后测试 Status 属性是否完成:

if (dispatcherOp.Status == DispatcherOperationStatus.Completed) { ... }

该操作也有可能被中止,因此处理/测试 Aborted 也可能是合适的。

The DispatcherOperation object returned by BeginInvoke has a Completed event on it. Subscribe to that to perform operations upon completion:

var dispatcherOp = Dispatcher.BeginInvoke( /* your method here */);
dispatcherOp.Completed += (s, e) => { /* callback code here */ };

There's a chance the operation will complete before you subscribe, so you can test the Status property for completion after as well:

if (dispatcherOp.Status == DispatcherOperationStatus.Completed) { ... }

It's possible for the operation to be aborted as well, so handling/testing for Aborted may also be appropriate.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文