C\#간단 한 인쇄 를 위 한 인 스 턴 스 코드
public partial class PrintFileForm : Form
{
public PrintFileForm()
{
InitializeComponent();
PrintFile prinFile = new PrintFile();
prinFile.Print();
}
}
인쇄 파일 종 류 는 다음 과 같 습 니 다.
class PrintFile
{
StreamReader sr = null;
Font printFont = new Font(" ", 12);
public void Print()
{
try
{
sr = new StreamReader(@"F:\Temp.txt");
try
{
PrintDocument printDoc = new PrintDocument();
printDoc.PrintPage += printDoc_PrintPage;
printDoc.Print();
}
finally
{
sr.Close();
}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
void printDoc_PrintPage(object sender, PrintPageEventArgs e)
{
string line = null;
// = .
float pageLine = e.MarginBounds.Height / printFont.GetHeight(e.Graphics);
//
for (int count = 0; count < pageLine && ((line=sr.ReadLine())!=null); count++)
{
float singleLine=e.MarginBounds.Top+(count*printFont.GetHeight(e.Graphics));
e.Graphics.DrawString(line, printFont, Brushes.Black, e.MarginBounds.Left, singleLine);
}
//
if (line != null)
e.HasMorePages = true;
else
e.HasMorePages = false;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
leetcode 알고리즘 문제 170 (단순 042) 두 수의 합 III - 데이터 구조 설계leetcode 알고리즘 문제 170 (단순 042) 두 수의 합 III - 데이터 구조 설계 제목 소개 예시 add(1); add(3); add(5); find(4) -> true find(7) -> false a...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.