在 WPF 中取消 BeginInvoke
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Dispatcher.BeginInvoke
返回一个DispatcherOperation
对象。 如果保留对它的引用,则可以使用其Abort
方法使操作(如果操作尚未开始执行)出队。Dispatcher.BeginInvoke
returns aDispatcherOperation
object. If you retain a reference to it, you can use itsAbort
method to dequeue the operation if it hasn't started executing yet.