我正在开发一个应用程序,它作为打印代理工作而无需用户交互。在那里,我必须考虑以下条件。
- 用户不应访问下载文件。
- 文件打印后将被删除。
- 下载文件可以是 Image/PDF 或 word.docx
- 第一个下载的文件应该先打印。
到目前为止,我能够完成如下。- 为赶上新的下载文件而创建的观察者方法。
public void catchDocuments()
{
if (!string.IsNullOrEmpty(Program.docDirectory))
{
file_watcher = new FileSystemWatcher();
file_watcher.Path = Program.docDirectory;
file_watcher.EnableRaisingEvents = true;
file_watcher.Created += new FileSystemEventHandler(OnChanged);
}
}
当新文件到来时,它会触发 Onchange 事件并打印文档。
string extension = Path.GetExtension(args.FullPath);
if (extension.Equals(@".png") || extension.Equals(@".jpeg") || extension.Equals(@".jpg"))
{
docCtrl.imageToByteArray(nFile);
docCtrl.printImage();
}
else if (extension.Equals(@".pdf"))
{
docCtrl.PrintPDF(nFile);
}
但我的问题是,在完成下载文件的打印过程之前下载另一个文件时,应用程序将无法正常工作。
我使用如下打印选项。
//For Image printing
public void printImage()
{
System.Drawing.Printing.PrintDocument pd = new System.Drawing.Printing.PrintDocument();
pd.PrintPage += new PrintPageEventHandler(PrintPage);
PrintDialog pdi = new PrintDialog();
pdi.Document = pd;
pdi.PrinterSettings.PrinterName;
pd.Print();
}
//For PDF Printing
public void PrintPDF(string path)
{
PrintDialog pdf = new PrintDialog();
Process p = new Process();
pdf.AllowSelection = true;
pdf.AllowSomePages = true;
p.EnableRaisingEvents = true; //Important line of code
p.StartInfo = new ProcessStartInfo()
{
CreateNoWindow = true,
Verb = "print",
FileName = path,
};
p.Start();
p.WaitForExit();
p.Close();
}
我怎么能克服这个问题。我会非常感谢你的好想法。