5 types derived from PrintController
System.Drawing.Common (2)
Special\NotSupported.cs (2)
2931public partial class PreviewPrintController : System.Drawing.Printing.PrintController 3165public partial class StandardPrintController : System.Drawing.Printing.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
6 references to PrintController
System.Drawing (1)
System.Drawing.cs (1)
120[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Drawing.Printing.PrintController))]
System.Drawing.Common (1)
Special\NotSupported.cs (1)
2974public System.Drawing.Printing.PrintController PrintController { get { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } set { throw new System.PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } }
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;