在 WPF 中取消 BeginInvoke

发布于 2024-07-29 04:42:33 字数 144 浏览 5 评论 0原文

在 WPF 中,我正在调用 This.Dispatcher.BeginInvoke(DispatcherPriority.SystemIdle, mydelegete);

有没有办法稍后取消 BeginInvoke 方法?

谢谢

In WPF, I am calling
This.Dispatcher.BeginInvoke(DispatcherPriority.SystemIdle, mydelegete);

Is there a way to cancel later that BeginInvoke method?

Thanks

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

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

发布评论

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

评论(1

往昔成烟 2024-08-05 04:42:33

Dispatcher.BeginInvoke 返回一个 DispatcherOperation 对象。 如果保留对它的引用,则可以使用其 Abort 方法使操作(如果操作尚未开始执行)出队。

Dispatcher.BeginInvoke returns a DispatcherOperation object. If you retain a reference to it, you can use its Abort method to dequeue the operation if it hasn't started executing yet.

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