Jump to content

[Resolvido] Imprimir Cabeçalho e Corpo


Recommended Posts

Posted

Boas é possivel com o c# construir uma página em branco e adicionar nela multiplas fonts, cabeçalho e corpo para imprimir?

até agora o que consegui foi:

private void btnImprimir_Click(object sender, EventArgs e)
    {
	    //printDialog1.Document = printDocument1;
	    //string Texto=textBox1.Text;
	    //if (printDialog1.ShowDialog() == DialogResult.OK)
	    //{
	    //    this.printDocument1.Print();
	    //}
	    PrintDocument Documento;
	    Documento = new PrintDocument();
	    Documento.DocumentName = "algo";
	    Documento.PrintPage += new PrintPageEventHandler(this.printDocument1_PrintPage);
	    printPreviewDialog1.Document = Documento;
	    printPreviewDialog1.ShowDialog();
	    Documento.Dispose();
    }
    private void printDocument1_PrintPage(object sender, PrintPageEventArgs ev)
    {
	    Font FontTitulo = new Font("Calibri",14,FontStyle.Bold);
	    Font FontSubTitulo = new Font("Calibri", 12, FontStyle.Bold);

	    string Titulo="TITULO\n"
						  +"Subtitulo";

	    int y;  
	    StringFormat formatacao= new StringFormat();
	    formatacao.LineAlignment = StringAlignment.Center;
	    formatacao.Alignment = StringAlignment.Center;
	    y = ev.MarginBounds.Y;
	    ev.Graphics.DrawString(Titulo, FontTitulo, Brushes.Black, ClientRectangle, formatacao);
	    ev.Graphics.DrawString(Titulo, FontTitulo, Brushes.Black, ClientRectangle, formatacao);

    }

alguém sabe resolver este mistério?

Posted

já achei uma forma penso eu , tanbém encontrei o Chilkat.NET. e o Aspose.NET que fazem isso mas infelismente é pago ( e bem pago )

	    ev.Graphics.DrawString(Titulo, FontTitulo, Brushes.Black, ClientRectangle, formatacaoCentro);
	    ev.Graphics.DrawString(SubTitulo, FontSubTitulo, Brushes.Black, ClientRectangle, formatacaoCentro);
	    ev.Graphics.DrawLine(Pens.Black, 10, 10, 700, 10);
	    ev.Graphics.DrawString("aaaaaaaaaaaaaaaaaaaaaaa", FontTitulo, Brushes.Black, ClientRectangle, formatacaoEsquerda);

como escolho a posição onde fica o texto penso k o ClientRectangle seja a localização onde o texto será posto

e o Graphics.DrawLine(Pens.Black, a, b, c, d);

o que é o ClientRectangle e DrawLine(a,b,c e d) ?

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.