Döküman Yazdırma
Bu örneğimizde richTextBox ımızdaki stringi yazdıracağız. Formunuza 1 adet printDocument,richTextBox ve Button ekleyin.
Aşağıdaki şekilleri inceleyin.
Şekil 1
Şekil 2
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 printDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
{
e.Graphics.DrawString(richTextBox1.Text, new Font("Times New Roman", 12, FontStyle.Regular), Brushes.Black, 100, 100);
}
private void Form1_Load(object sender, EventArgs e)
{
this.Text = "Döküman Yazdırma";
this.MaximizeBox = false;
}
private void button1_Click(object sender, EventArgs e)
{
printDocument1.Print();
}
}
}
//Bir sonraki makalede görüşmek üzere. Bahadır