私のアプリケーションでは、既存の PDF またはドキュメントを印刷する関数を作成しようとしています。C# でこれを行う方法と、ユーザーが別のプリンターやその他のプロパティを選択できるメカニズムを提供する方法を教えてください。
私は PrintDialog を見てきましたが、印刷しようとしているファイルがあるかどうかはわかりません.b / c出力は常に空白のページです。多分私はそこに何かが欠けているだけです。
アドバイス、例、またはサンプルコードは素晴らしいでしょう!
以下は私のコードです
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string printPath =
System.Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
System.IO.StreamReader fileToPrint;
fileToPrint= new System.IO.StreamReader(printPath + @"\myFile.txt");
System.Drawing.Font printFont;
printPDF(e);
printDocument1.Print();
fileToPrint.Close();
}
private void button2_Click(object sender, EventArgs e)
{
//printDoc(e);
}
public void printPDF(object sender ,
System.Drawing.Printing.PrintPageEventArgs e))
{
printFont = new System.Drawing.Font("Arial", 10);
float yPos = 0f;
int count = 0;
float leftMargin = e.MarginBounds.Left;
float topMargin = e.MarginBounds.Top;
string line = null;
float linesPerPage = e.MarginBounds.Height /
printFont.GetHeight(e.Graphics);
while (count < linesPerPage)
{
line = fileToPrint.ReadLine();
if (line == null)
{
break;
}
yPos = topMargin + count * printFont.GetHeight(e.Graphics);
e.Graphics.DrawString(line, printFont, Brushes.Black, leftMargin, yPos,
new StringFormat());
count++;
}
if (line != null)
{
e.HasMorePages = true;
}
fileToPrint.Close();
}
public void printDoc()
{
}
}
}