编程语言
首页 > 编程语言> > C#获取本地所有打印机名称

C#获取本地所有打印机名称

作者:互联网

引用:using System.Drawing.Printing;

实现代码:

List<string> PrintS = new List<string>();
foreach (string sPrint in PrinterSettings.InstalledPrinters)//获取所有打印机名称
{
PrintS.Add(sPrint);
}

//InstalledPrinters 获取打印机名称

 

打开打印机设备控制面板:System.Diagnostics.Process.Start("rundll32.exe", "shell32.dll,SHHelpShortcuts_RunDLL PrintersFolder");

标签:打印机,InstalledPrinters,C#,List,PrintS,System,本地,sPrint
来源: https://www.cnblogs.com/aqiyi/p/15845608.html