--- title: "PrintPreviewDialog Control Overview" ms.date: "01/08/2018" f1_keywords: - "PrintPreviewDialog" helpviewer_keywords: - "PrintPreviewDialog control (using designer), about PrintPreviewDialog" ms.assetid: efd4ee8d-6edd-47ec-88e4-4a4759bd2384 --- # PrintPreviewDialog control overview (Windows Forms) The Windows Forms control is a pre-configured dialog box used to display how a [PrintDocument](printdocument-component-windows-forms.md) will appear when printed. Use it within your Windows-based application as a simple solution instead of configuring your own dialog box. The control contains buttons for printing, zooming in, displaying one or multiple pages, and closing the dialog box. ## Key properties and methods The control's key property is , which sets the document to be previewed. The document must be a object. In order to display the dialog box, you must call its method. Anti-aliasing can make the text appear smoother, but it can also make the display slower; to use it, set the property to `true`. Certain properties are available through the that the contains. (You do not have to add this to the form; it is automatically contained within the when you add the dialog to your form.) Examples of properties available through the are the and properties, which determine the number of pages displayed horizontally and vertically on the control. You can access the property as `PrintPreviewDialog1.PrintPreviewControl.Columns` in Visual Basic, `printPreviewDialog1.PrintPreviewControl.Columns` in Visual C#, or `printPreviewDialog1->PrintPreviewControl->Columns` in Visual C++. ## PrintPreviewDialog performance Under the following conditions, the control initializes very slowly: - A network printer is used. - User preferences for this printer, such as duplex settings, are modified. For apps running on the .NET Framework 4.5.2, you can add the following key to the \ section of your configuration file to improve the performance of control initialization: ```xml ``` If the `EnablePrintPreviewOptimization` key is set to any other value, or if the key is not present, the optimization is not applied. For apps running on the .NET Framework 4.6 or later versions, you can add the following switch to the [\](https://docs.microsoft.com/dotnet/framework/configure-apps/file-schema/runtime/appcontextswitchoverrides-element) element in the [\](https://docs.microsoft.com/dotnet/framework/configure-apps/file-schema/runtime/index) section of your app config file: ```xml   ``` If the switch is not present or if it is set to any other value, the optimization is not applied. If you use the event to modify printer settings, the performance of the control will not improve even if an optimization configuration switch is set. ## See also - - [PrintPreviewControl Control Overview](printpreviewcontrol-control-overview-windows-forms.md) - [PrintPreviewDialog Control](printpreviewdialog-control-windows-forms.md) - [Dialog-Box Controls and Components](dialog-box-controls-and-components-windows-forms.md)