标签: c# dispatcher
调用Dispatcher.Invoke(Action)时,操作的调度程序优先级是什么?
我理解Dispatcher.Invoke(Action,DispatcherPriority)是如何工作的,我假设如果省略DispatcherPriority参数,它将为操作提供默认的DispatcherPriority值。我错了吗?如果没有那个默认值?
谢谢!
答案 0 :(得分:5)
您可以直接在源代码中查看Microsoft的reference source。
正在使用DispatcherPriority.Send。
DispatcherPriority.Send
对于这样的情况,参考源非常方便。