8 writes to PrintController
System.Drawing.Common.Tests (6)
System\Drawing\Printing\PrintDocumentTests.cs (6)
98document.PrintController = null; 102document.PrintController = printController; 134document.PrintController = new TestPrintController(); 152document.PrintController = new TestPrintController(); 195document.PrintController = new TestPrintController(); 213document.PrintController = new TestPrintController();
System.Windows.Forms (2)
System\Windows\Forms\Printing\PrintPreviewControl.cs (2)
514_document.PrintController = new PrintControllerWithStatusDialog( 522_document.PrintController = oldController;
4 references to PrintController
System.Drawing.Common (1)
System\Drawing\Printing\PrintDocument.cs (1)
171PrintController controller = PrintController;
System.Drawing.Common.Tests (2)
System\Drawing\Printing\PrintDocumentTests.cs (2)
99Assert.NotNull(document.PrintController); 103Assert.Same(printController, document.PrintController);
System.Windows.Forms (1)
System\Windows\Forms\Printing\PrintPreviewControl.cs (1)
508PrintController oldController = _document.PrintController;