• C# 获取打印机列表


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

  • 相关阅读:
    .net core 3.1 添加区域 area
    JMeter 网站并发测试工具使用教程
    .net core 3.1 使用ado.net
    .net core 3.1 mvc 调试的时 更改cshtml页面 刷新浏览器不更新
    .net core 3.1 autofac(webapi / mvc 通过)
    .net core3.1 rest api 无法接收 vue 中 axios 请求
    .net core 3.1 web api 允许跨域
    mysql 中文匹配
    mysql 分组排序
    mysql json处理
  • 原文地址:https://www.cnblogs.com/edielei/p/4966366.html
Copyright © 2020-2023  润新知