Working to a WPF Application (.NET fw 4.5), I can't find a way to display a print setup dialog as in the following image (I think it's based on Windows Forms but a WPF solution it would be better):
Using the code:
PrintDialog myPrintDialog = new PrintDialog();
myPrintDialog.ShowDialog();
I obtain a dialog with Print Range and Copies Settings (which I don't need) but not Paper and Orientation (which I want to get).
I read the question wpfcsharp-print-dialog-settings but I can't figure out how to use the accepted answer.