5 types derived from PrintController
System.Drawing.Common (2)
System\Drawing\Printing\DefaultPrintController.cs (1)
12public unsafe class StandardPrintController : PrintController, IHandle<HDC>
System\Drawing\Printing\PreviewPrintController.cs (1)
11public class PreviewPrintController : PrintController
System.Drawing.Common.Tests (2)
System\Drawing\Printing\PrintControllerTests.cs (1)
98private class SubPrintController : PrintController
System\Drawing\Printing\PrintDocumentTests.cs (1)
277private class TestPrintController : PrintController
System.Windows.Forms (1)
System\Windows\Forms\Printing\PrintControllerWithStatusDialog.cs (1)
9public partial class PrintControllerWithStatusDialog : PrintController
11 references to PrintController
System.Drawing (1)
System.Drawing.cs (1)
120[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Drawing.Printing.PrintController))]
System.Drawing.Common (6)
System\Drawing\Printing\PrintController.cs (2)
18/// Gets a value indicating whether the <see cref="PrintController"/> is used for print preview. 94/// If you have nested <see cref="PrintController"/> objects, this method won't get called on the inner one.
System\Drawing\Printing\PrintDocument.cs (4)
24private PrintController? _printController; 76/// Gets or sets the <see cref='Printing.PrintController'/> that guides the printing process. 81public PrintController PrintController 171PrintController controller = PrintController;
System.Windows.Forms (4)
System\Windows\Forms\Printing\PrintControllerWithStatusDialog.cs (3)
11private readonly PrintController _underlyingController; 17public PrintControllerWithStatusDialog(PrintController underlyingController) 22public PrintControllerWithStatusDialog(PrintController underlyingController, string dialogTitle)
System\Windows\Forms\Printing\PrintPreviewControl.cs (1)
508PrintController oldController = _document.PrintController;