vote up 21 vote down star
11

I have an upcoming project which will have to be able to print simple reports from its data. It'll be WPF-based, and I'm wondering which way to go.

I know that WPF introduces its own printing technology (based on XPS) which looks quite easy to use. However, part of me wonders whether it would just be easier to use the ReportViewer control and embed it in a Windows Forms host control, since that will give users the ability to export to a variety of formats as well as print.

Has anyone had any experience with printing/reporting from WPF? Which direction would you recommend?

flag

3 Answers

vote up 12 vote down check

We had this same issue, and ended up using RDLC/ReportViewer for now. There's no native WPF reporting tool (that I know of) and RDLC is pretty simple to use, and is free. The runtime overhead for it is small (around 2Mb) but you must remember to distribute it as it isn't part of the .NET Framework.

link|flag
vote up 1 vote down

http://www.stimulsoft.com/

link|flag
Looks to me like that's a WinForms reporting engine. – Matt Hamilton Oct 8 '08 at 8:11
you can call the ReportViewer in your wpf code as control works we use it. – ubik Oct 8 '08 at 8:58
However, part of me wonders whether it would just be easier to use the ReportViewer control and embed it in a Windows Forms host control, since that will give users the ability to export to a variety of formats as well as print. is easier solution – ubik Oct 8 '08 at 8:59
Part of me wonders that too. Hence this question. :) – Matt Hamilton Oct 8 '08 at 10:15
vote up 1 vote down

I've reccently accomplished task of developing own reporting system, which basically consist on design enviroment and data Source manager. The first task was to develop WYSWIG-like design enviroment. I've done this using GDI+, without even bothering about printing, as it came out printing/generating print preview was easiest than i expected, In general it only takes to draw all things on screen to graphics object of printing event.

I think that in case of WPF it would be similar, so all you should worry about is to display you report on screen and printing would be only few lines of code.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.