I am experiencing a WPF-related PrintDialog issue - Windows XP64 + VS2010.
It's incredible that getting the PrintDialog.PrintableAreaWidth or .PrintableAreaHeight property is very small.
//cm. code examples below - be sure to include "using System.Windows.Controls"
PrintDialog pd = new PrintDialog();
double pw = pd.PrintableAreaWidth;
double ph = pd.PrintableAreaHeight;
Anyone have any ideas on this? I appreciate any thoughts!
source
share