码迷,mamicode.com
首页 > Windows程序 > 详细

c#获取打印机列表

时间:2018-07-20 18:56:45      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:for   .com   www   als   ted   string   htm   server   static   

第一步:添加引用
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;
}

 

 

转载自:https://www.cnblogs.com/edielei/p/4966366.html

c#获取打印机列表

标签:for   .com   www   als   ted   string   htm   server   static   

原文地址:https://www.cnblogs.com/ITzhangyunpeng/p/9342948.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!