WPF 4:Windows 窗体主机、水晶报表异步
有没有办法以异步方式呈现 WinForms 控件(例如 Crystal Reports Viewer),甚至在不同的线程中呈现,而不会冻结应用程序。 我的问题是,当我分配报告源属性时,查看器尝试呈现报告,并且某些报告运行了很长时间,并且冻结了整个应用程序。
提前致谢
Is there a way to render WinForms controls like Crystal Reports Viewer asynch, or even in a different thread, without freezing the applicaton.
My problem is that, when I assign the report source property, the viewer tried to render the report and some reports run for so long and it freezes the whole app.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能不是必需的。看起来 Crystal Reports 2010 Winforms 和 WPF 查看器的默认行为都是异步呈现报表的。它们在渲染时显示一个旋转器,而不是保持 UI 线程。这样,您的 UI 在大多数情况下仍然保持响应能力。
This may not be required.. looks the default behavior of both Crystal Reports 2010 Winforms and WPF viewers render the report asynchronously. They show a spinner while rendering instead of holding the UI thread. This way you UI, most of the times, still remains responsive.