• c#获取全部打印机和默认打印机的方法


    using System.Drawing.Printing;        //这是必备
    for (int i = 0; i < PrinterSettings.InstalledPrinters.Count; i++)       //获取当前打印机
    {
                    comboBox1.Items.Add(PrinterSettings.InstalledPrinters[i])
    } comboBox1.SelectedIndex
    = 0;
    PrintDocument fPrintDocument = new PrintDocument();    //获取默认打印机的方法
    comboBox1.Text
    = fPrintDocument.PrinterSettings.PrinterName;
  • 相关阅读:
    使用GitHub+hexo搭建个人独立博客
    HDU 3038
    POJ 1417
    HDU 1213
    ZOJ 3781
    ZOJ 3780
    ZOJ 3777
    HDU 3045
    HDU 3480
    POJ 1180
  • 原文地址:https://www.cnblogs.com/erph/p/7283682.html
Copyright © 2020-2023  润新知