c#双面打印
钢翼
编程
if (printDocument.PrinterSettings.CanDuplex)
{
//双面垂直打印
printDocument.PrinterSettings.Duplex = Duplex.Vertical;
}
printDocument.Print();