Core\CSharp\System\Windows\Interop\HwndSource.cs (8)
343_weakShutdownHandler = new WeakEventDispatcherShutdown(this, this.Dispatcher);
529this.Dispatcher.BeginInvoke(DispatcherPriority.Loaded, new Action(SetLayoutSize));
533this.Dispatcher.BeginInvoke(DispatcherPriority.Loaded, new DispatcherOperationCallback(FireContentRendered), this);
588this.Dispatcher.BeginInvoke(DispatcherPriority.Loaded, new Action(SetLayoutSize));
592this.Dispatcher.BeginInvoke(DispatcherPriority.Loaded, new DispatcherOperationCallback(FireContentRendered), this);
711this.Dispatcher.BeginInvoke(DispatcherPriority.Loaded, new DispatcherOperationCallback(FireContentRendered), this);
2065DispatcherOperation restoreCharMessages = Dispatcher.BeginInvoke(DispatcherPriority.Normal, new DispatcherOperationCallback(RestoreCharMessages), null);
2071Dispatcher.CriticalRequestProcessing(true);
Core\CSharp\System\Windows\Media\MediaContext.cs (10)
242Dispatcher.ShutdownFinished += _destroyHandler;
371Dispatcher.BeginInvoke(DispatcherPriority.Normal, _renderModeMessage, null);
623_currentRenderOp = Dispatcher.BeginInvoke(DispatcherPriority.Inactive, _animRenderMessage, null);
636_currentRenderOp = Dispatcher.BeginInvoke(DispatcherPriority.Inactive, _animRenderMessage, null);
661_inputMarkerOp = Dispatcher.BeginInvoke(DispatcherPriority.Input, _inputMarkerMessage, null);
672_currentRenderOp = Dispatcher.BeginInvoke(priority, _animRenderMessage, null);
1494Dispatcher.ShutdownFinished -= _destroyHandler;
1738_currentRenderOp = Dispatcher.BeginInvoke(DispatcherPriority.Render, _renderMessage, null);
1901Rendering(this.Dispatcher, new RenderingEventArgs(_timeManager.LastTickTime));
2089using (Dispatcher.DisableProcessing())
src\Framework\MS\Internal\AppModel\XappLauncher.cs (10)
213Dispatcher.Invoke(
237Dispatcher.BeginInvoke(DispatcherPriority.Normal, new SendOrPostCallback(delegate
418Dispatcher.BeginInvoke(DispatcherPriority.Background, new DispatcherOperationCallback(DoGetManifestCompleted), e);
499Dispatcher.BeginInvoke(DispatcherPriority.Input,
551Dispatcher.BeginInvoke(DispatcherPriority.Normal, new DispatcherOperationCallback(
577Dispatcher.BeginInvoke(DispatcherPriority.Send, new DispatcherOperationCallback(
836Dispatcher.BeginInvoke(
886Dispatcher.BeginInvoke(DispatcherPriority.Normal, new DispatcherOperationCallback(DoDownloadApplicationCompleted), e);
938Dispatcher.BeginInvoke(DispatcherPriority.Input, new DispatcherOperationCallback(
1257Dispatcher.BeginInvoke(DispatcherPriority.Normal, new DispatcherOperationCallback(RunApplicationAsyncCallback), null);
src\Framework\MS\Internal\Documents\IFlowDocumentViewer.cs (5)
370Dispatcher.BeginInvoke(DispatcherPriority.Input, new DispatcherOperationCallback(BringContentPositionIntoView), value);
389Dispatcher.BeginInvoke(DispatcherPriority.Input, new DispatcherOperationCallback(SetTextSelection), value);
521Dispatcher.BeginInvoke(DispatcherPriority.Input, new DispatcherOperationCallback(RaisePropertyChangedAsync), null);
720Dispatcher.BeginInvoke(DispatcherPriority.Input, new DispatcherOperationCallback(BringContentPositionIntoView), value);
739Dispatcher.BeginInvoke(DispatcherPriority.Input, new DispatcherOperationCallback(SetTextSelection), value);
src\Framework\System\Windows\Controls\DataGrid.cs (6)
1561Dispatcher.BeginInvoke(DispatcherPriority.Loaded, new DispatcherOperationCallback(OnBringItemIntoView), info);
1606Dispatcher.BeginInvoke(DispatcherPriority.Loaded, new DispatcherOperationCallback(OnScrollIntoView), new object[] { info, column });
1989Dispatcher.BeginInvoke(new DispatcherOperationCallback(OnDelayedViewportWidthChanged), DispatcherPriority.Loaded, this);
2391Dispatcher.Invoke(new DispatcherOperationCallback(DoNothing), DispatcherPriority.DataBind, bindingGroup);
4087Dispatcher.BeginInvoke((Action)delegate()
8531Dispatcher.BeginInvoke(new DispatcherOperationCallback(InvalidateCellsPanelHorizontalOffset), DispatcherPriority.Loaded, this);
src\Framework\System\Windows\Controls\VirtualizingStackPanel.cs (10)
801DispatcherOperation anchorOperation = Dispatcher.BeginInvoke(DispatcherPriority.Render, (Action)OnAnchorOperation);
870DispatcherOperation anchorOperation = Dispatcher.BeginInvoke(DispatcherPriority.Background, (Action)OnAnchorOperation);
1035DispatcherOperation anchorOperation = Dispatcher.BeginInvoke(DispatcherPriority.Render, (Action)OnAnchorOperation);
1377anchoredInvalidateMeasureOperation = Dispatcher.BeginInvoke(DispatcherPriority.Render,
1678Dispatcher.BeginInvoke(DispatcherPriority.Loaded, (Action)delegate()
4341Dispatcher.BeginInvoke(DispatcherPriority.Background, measureCachesAction));
4370clearIsScrollActiveOperation = Dispatcher.BeginInvoke(DispatcherPriority.Background,
4378measureCachesOperation = Dispatcher.BeginInvoke(DispatcherPriority.Background,
4389clearIsScrollActiveOperation = Dispatcher.BeginInvoke(DispatcherPriority.Background,
8730_cleanupOperation = Dispatcher.BeginInvoke(DispatcherPriority.Background, new DispatcherOperationCallback(OnCleanUp), null);