C#打印,不显示打印进度的对话框

  PrintDocument pd = new PrintDocument();

    //隐藏 对话框
   PrintController printController = new StandardPrintController();
   pd.PrintController = printController;

    //创建打印画布
   Graphics g = pd.PrinterSettings.CreateMeasurementGraphics();
   g.DrawImage(image,0,0);

   pd.Print();

 

相关文章:

  • 2021-12-21
  • 2021-12-04
  • 2022-12-23
  • 2022-12-23
  • 2021-11-23
  • 2021-12-04
  • 2022-02-26
  • 2021-07-04
猜你喜欢
  • 2021-12-20
  • 2022-03-09
  • 2022-12-23
  • 2022-01-18
相关资源
相似解决方案