WPF Printing – Set the Printer Automataically on WPF PrintDialog

flowdocumentprintingwpf

I am trying to print a WPF FlowDocument to a particular printer, without prompting the user. The printer is a PDF converter.

This works great except that it prints to the default printer:

   PrintDialog pd = new PrintDialog();
   var doc = ((IDocumentPaginatorSource) RTB.Document).DocumentPaginator;
   // I would like to explicitly set the printer to print to here.
   pd.PrintDocument(doc, "Print Document");

In WinForms there is a System.Drawing.Printing.PrinterSettings object on document which has a PrinterName property which can be set to the printer I want, but I don't see that in WPF.

Best Answer

You first need a reference in your project to System.Printing. Then you can use the following code right after you declare your PrintDialog object.

pd.PrintQueue = new PrintQueue(new PrintServer(), "The exact name of my printer");

The PrintQueue is an object that represents the printer and everything else about that print queue.