首页 > 代码库 > wpf Dispatcher 与 DispatcherPriority

wpf Dispatcher 与 DispatcherPriority

  Dispatcher.Invoke(new Action(() =>                                {                                   // 执行操作。                                }), DispatcherPriority.ContextIdle);
DispatcherPriority.ContextIdle,Background 是显示ui后处理

wpf Dispatcher 与 DispatcherPriority