WPF - 查看和 RDLC 报告文件
我有一个广泛的 WPF 应用程序,现在我想合并一些报告。我了解如何使用 RDLC 创建报告,但是查看它们怎么样?理想情况下,我想使用 DocumentViewer,但我不认为这是受支持的文件类型之一。有些文章建议使用 ReportViewer,但我的 IDE (VS Pro 2008) 中没有将其作为控件。
有没有办法将 RDLC“转换”为 XPS,然后使用 DocumentViewer 或者 WPF 应用程序查看 RDLC 报告的最佳方法是什么?
I have an extensive WPF application and I now want to incorporate some reports. I understand how to create the reports with RDLC but what about viewing them? Ideally, I'd like to use the DocumentViewer but I don't think that's one of the supported file types. Some articles have suggested using the ReportViewer, but I do not have that as a control in my IDE (VS Pro 2008).
Is there a way to "convert" RDLC to XPS and then use the DocumentViewer or what is the best way for a WPF application to view an RDLC report?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MicrosoftReportViewer 控件是一个 Windows 窗体控件。您可以使用 WindowsFormsHost 控件在 WPF 中“托管”报表查看器控件,如 记录在此处。
The MicrosoftReportViewer control is a Windows Forms control. You can use the WindowsFormsHost control to "host" the report viewer control in WPF, as documented here.
查看 codeplex 上的开源 .NET WPF 报告引擎
Take a look at the Open-Source .NET WPF Reporting Engine on codeplex