2015-04-30 89 views
-1

我用下面的代碼,直接在C#中的winform打印文檔如何直接在C#文檔打印

string fileName = @"D:\filename11" + ext; // Here ext is file extension 
PrintDocument printDoc = new PrintDocument(); 
printDoc.DocumentName = fileName; 
printDoc.Print(); 

此代碼不工作,打印空白頁。請幫助

回答