Category / Section
How to show classic print preview in WPF Diagram (SfDiagram)?
1 min read
WPF Diagram (SfDiagram) provides new print preview dialog with custom options. However, the older or classic print preview can also be shown by using the ShowClassicPrintPreview method of PrintingService.
Refer to the following code snippet to use classic preview.
Diagram.PrintingService.ShowDialog = true; Diagram.PrintingService.ShowClassicPrintPreview();