System.Printing.PrintQueue QueueStatus未更新

时间:2010-11-23 23:10:48

标签: wpf printing system.printing printqueue

有没有办法更新PrintQueue对象中包含的打印队列状态信息?

我尝试在Refresh对象上调用PrintQueue,但实际上并没有做任何事情。例如,我关闭了打印机,控制面板正确地将打印机显示为“离线”,但是QueueStatus属性以及IsOffline属性没有反映出来 - 无论我多少次在相关的PrintServerPrintQueue上调用刷新。

我已经看到了如何使用WMI查询获取状态信息的示例,但我想知道 - 因为这些属性在PrintQueue对象上可用 - 是否有任何方法可以使用它们。

1 个答案:

答案 0 :(得分:0)

尝试打印PrintDocument(System.Drawing.Printing)后,尝试检查printjobs的状态。

第一步:     初始化printDocument。

第二步:     从System.Drawing.Printing.PrinterSettings.InstalledPrinters.Cast<string>();

获取您的打印机名称

将其复制到printerDocument.PrinterSettings.PrinterName

第三步: 尝试打印和处理。

printerDocument.Print();
printerDocument.Dispose();

最后一步:在任务中运行检查(不要阻止UI线程)。

   Task.Run(()=>{
     if (!IsPrinterOk(printerDocument.PrinterSettings.PrinterName,checkTimeInMillisec))
     {
        // failed printing, do something...
     }
    });

以下是实施:

        private bool IsPrinterOk(string name,int checkTimeInMillisec)
        {
            System.Collections.IList value = null;
            do
            {
                //checkTimeInMillisec should be between 2000 and 5000
                System.Threading.Thread.Sleep(checkTimeInMillisec);

                using (System.Management.ManagementObjectSearcher searcher = new System.Management.ManagementObjectSearcher("SELECT * FROM Win32_PrintJob WHERE Name like '%" + name + "%'"))
                {
                    value = null;

                    if (searcher.Get().Count == 0) // Number of pending document.
                        return true; // return because we haven't got any pending document.
                    else
                    {
                        foreach (System.Management.ManagementObject printer in searcher.Get())
                        {
                            value = printer.Properties.Cast<System.Management.PropertyData>().Where(p => p.Name.Equals("Status")).Select(p => p.Value).ToList();
                            break; 
                        }
                    }
                }
           }
           while (value.Contains("Printing") || value.Contains("UNKNOWN") || value.Contains("OK"));

           return value.Contains("Error") ? false : true;    
        }
祝你好运。