当我使用ReportViewer
技术(LocalReport)使用Microsoft XPS printer
从我的计算机打印资源时,它会将默认文件名设为:*.xps
我会以编程方式更改它,我该怎么办?
我改变了两个属性:
_reportViewer.LocalReport.DisplayName = _printFileName;
_reportViewer.PrinterSettings.PrintFileName = _printFileName;
似乎大多数技术都能理解我想要的东西。 (CutePDF,其他打印机),但不是Microsoft XPS编写器。建议?
答案 0 :(得分:0)
我相信你所缺少的是另外一行:
_reportViewer.PrinterSettings.PrintToFile = true;