4

I have a WPF application for product purchase billing. My client wants that app should be able to bill and print upto 1-99 products at once. they use bill printer (mini size printer) for billing. How I can achieve this in WPF C#. Any code or link would be helpful.

Thank you...

Raj
  • 3,890
  • 7
  • 52
  • 80

1 Answers1

1

It sounds like you will want to print more than a page worth of data - in which case you should look at paginating the results.

The following is a great tutorial on how to do just that: http://www.switchonthecode.com/tutorials/wpf-printing-part-2-pagination

Some additional links from SO:

Community
  • 1
  • 1
Brad Leach
  • 16,857
  • 17
  • 72
  • 88