首页 > 学院 > 开发设计 > 正文

C#获取打印机列表

2019-11-14 13:46:56
字体:
来源:转载
供稿:网友

第一步:添加引用
using System.PRinting;

第二步:代码
public static List<string> GetPrintList()
{
    List<string> lt = new List<string>();
    LocalPrintServer printServer = new LocalPrintServer();
    PrintQueueCollection printQueuesOnLocalServer = printServer.GetPrintQueues(new[] { EnumeratedPrintQueueTypes.Local });
    foreach (PrintQueue printer in printQueuesOnLocalServer)
        lt.Add(printer.Name);
    return lt;
}


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表