3
在WPF中,我打電話給 This.Dispatcher.BeginInvoke(DispatcherPriority.SystemIdle,mydelegete);取消WPF中的BeginInvoke
以後有辦法取消BeginInvoke方法嗎?
感謝
在WPF中,我打電話給 This.Dispatcher.BeginInvoke(DispatcherPriority.SystemIdle,mydelegete);取消WPF中的BeginInvoke
以後有辦法取消BeginInvoke方法嗎?
感謝
Dispatcher.BeginInvoke
返回DispatcherOperation
對象。如果您保留對其的引用,則可以使用其Abort
方法在操作尚未開始的情況下使操作出列。