5

使用 PrintDialog 从 WPF 打印时,您只能为所有要打印的页面设置默认页面方向。我正在使用 FixedDocument 并为我自己布局的不同内容创建多个页面,包括页眉和页脚行。其中一些页面必须是横向的,其他页面必须是纵向的。

如何设置单个页面的方向?FixedPage 类不提供这样的属性。

4

1 回答 1

0

使用 PrintTicket 怎么样?

PrintTicket 对象是一种称为 PrintTicket 文档的特定类型 XML 文档的易于使用的表示。后者是一组指令,告诉打印机如何设置其各种功能(例如双面打印、整理和装订)。

我还没有清楚地看到它,但在这里似乎可以一一更改页面的方向:

// Use different PrintTickets for different FixedDocuments.
PrintTicket ptFD = new PrintTicket();

if (_firstDocumentPrintTicket <= 1)
{   // Print the first document in black/white and in portrait 
    // orientation.  Since the PrintTicket at the 
    // FixedDocumentSequence level already specifies portrait 
    // orientation, this FixedDocument can just inherit that 
    // setting without having to set it again.
    ptFD.PageOrientation = PageOrientation.Portrait;
    ptFD.OutputColor = OutputColor.Monochrome;
    _firstDocumentPrintTicket++;
}

else // if (_firstDocumentPrintTicket > 1)
{   // Print the second document in color and in landscape 
    // orientation.  Since the PrintTicket at the 
    // FixedDocumentSequence level already specifies portrait 
    // orientation, this FixedDocument needs to set its 
    // PrintTicket with landscape orientation in order to 
    // override the higher level setting.
    ptFD.PageOrientation = PageOrientation.Landscape;
    ptFD.OutputColor = OutputColor.Color;
}

http://msdn.microsoft.com/en-us/library/system.printing.pageorientation.aspx

于 2013-04-06T16:28:56.547 回答