gpt4 book ai didi

c# - 我如何使用 C# 检查打印机是否已安装并准备就绪?

转载 作者:可可西里 更新时间:2023-11-01 08:35:30 25 4
gpt4 key购买 nike

如何使用 .NET 3.5 和 Visual Studio 2008 在 C# 中以编程方式检查打印机是否已安装(如果有,我如何检查它是否已打开并准备好使用?)

提前致谢

最佳答案

此代码段将检索有关已安装打印机的信息:

using System.Drawing.Printing;
//...

foreach (string printerName in PrinterSettings.InstalledPrinters)
{
// Display the printer name.
Console.WriteLine("Printer: {0}", printerName);

// Retrieve the printer settings.
PrinterSettings printer = new PrinterSettings();
printer.PrinterName = printerName;

// Check that this is a valid printer.
// (This step might be required if you read the printer name
// from a user-supplied value or a registry or configuration file
// setting.)
if (printer.IsValid)
{
// Display the list of valid resolutions.
Console.WriteLine("Supported Resolutions:");

foreach (PrinterResolution resolution in
printer.PrinterResolutions)
{
Console.WriteLine(" {0}", resolution);
}
Console.WriteLine();

// Display the list of valid paper sizes.
Console.WriteLine("Supported Paper Sizes:");

foreach (PaperSize size in printer.PaperSizes)
{
if (Enum.IsDefined(size.Kind.GetType(), size.Kind))
{
Console.WriteLine(" {0}", size);
}
}
Console.WriteLine();
}
}

另一种选择是使用 WMI。右键单击项目 > 添加引用 > 选择 .NET 选项卡 > System.Management

using System.Management;
// ...

private List<string> GetPrinters()
{
List<string> printerNames = new List<string>();

// Use the ObjectQuery to get the list of configured printers
System.Management.ObjectQuery oquery =
new System.Management.ObjectQuery("SELECT * FROM Win32_Printer");

System.Management.ManagementObjectSearcher mosearcher =
new System.Management.ManagementObjectSearcher(oquery);

System.Management.ManagementObjectCollection moc = mosearcher.Get();

foreach (ManagementObject mo in moc)
{
System.Management.PropertyDataCollection pdc = mo.Properties;
foreach (System.Management.PropertyData pd in pdc)
{
if ((bool)mo["Network"])
{
printerNames.Add(mo[pd.Name]);
}
}
}

return printerNames;

}

这是显示更多属性的另一个片段:

    static void PrintProps(ManagementObject o, string prop)
{
try { Console.WriteLine(prop + "|" + o[prop]); }
catch (Exception e) { Console.Write(e.ToString()); }
}

static void Main(string[] args)
{

ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT * FROM Win32_Printer");

foreach (ManagementObject printer in searcher.Get())
{
string printerName = printer["Name"].ToString().ToLower();
Console.WriteLine("Printer :" + printerName);

PrintProps(printer, "Caption");
PrintProps(printer, "ExtendedPrinterStatus");
PrintProps(printer, "Availability");
PrintProps(printer, "Default");
PrintProps(printer, "DetectedErrorState");
PrintProps(printer, "ExtendedDetectedErrorState");
PrintProps(printer, "ExtendedPrinterStatus");
PrintProps(printer, "LastErrorCode");
PrintProps(printer, "PrinterState");
PrintProps(printer, "PrinterStatus");
PrintProps(printer, "Status");
PrintProps(printer, "WorkOffline");
PrintProps(printer, "Local");
}

}

关于c# - 我如何使用 C# 检查打印机是否已安装并准备就绪?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1622903/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com