15 references to DisableProcessing
PresentationCore (9)
Core\CSharp\System\Windows\Automation\Peers\AutomationPeer.cs (1)
282using (Dispatcher.CurrentDispatcher.DisableProcessing())
Core\CSharp\System\Windows\Input\KeyboardDevice.cs (1)
464using(Dispatcher.DisableProcessing()) // Disable reentrancy due to locks taken
Core\CSharp\System\Windows\Input\MouseDevice.cs (2)
1062using(Dispatcher.DisableProcessing()) // Disable reentrancy due to locks taken 1164using (Dispatcher.DisableProcessing()) // Disable reentrancy due to locks taken
Core\CSharp\System\Windows\LayoutManager.cs (1)
273using(Dispatcher.DisableProcessing())
Core\CSharp\System\Windows\Media\MediaContext.cs (1)
2089using (Dispatcher.DisableProcessing())
Core\CSharp\System\Windows\Media\Visual.cs (1)
1050using(Dispatcher.DisableProcessing())
Core\CSharp\System\Windows\UIElement.cs (2)
592using (Dispatcher.DisableProcessing()) 806using (Dispatcher.DisableProcessing())
PresentationFramework (5)
src\Framework\MS\Internal\Documents\FlowDocumentFormatter.cs (1)
102using (_document.Dispatcher.DisableProcessing())
src\Framework\MS\Internal\Documents\FlowDocumentPaginator.cs (3)
170using (_document.Dispatcher.DisableProcessing()) 319using (_document.Dispatcher.DisableProcessing()) 802using (_document.Dispatcher.DisableProcessing())
src\Framework\System\Windows\Documents\TextContainer.cs (1)
3364_rootNode.DispatcherProcessingDisabled = this.Dispatcher.DisableProcessing();
WindowsBase (1)
Shared\MS\Internal\ReaderWriterLockSlimWrapper.cs (1)
275Dispatcher.FromThread(Thread.CurrentThread)?.DisableProcessing();